2017-03-15 13:57:25 +01:00
|
|
|
# Arguments listed in the doc comment must exist in the actual schema
|
|
|
|
|
|
|
|
##
|
|
|
|
# @Frob:
|
|
|
|
# @a: a
|
|
|
|
# @b: b
|
|
|
|
##
|
|
|
|
{ 'union': 'Frob',
|
|
|
|
'base': 'Base',
|
|
|
|
'discriminator': 'type',
|
|
|
|
'data': { 'nothing': 'Empty' } }
|
|
|
|
|
|
|
|
{ 'struct': 'Base',
|
2021-03-23 10:40:11 +01:00
|
|
|
'data': { 'type': 'FrobType' } }
|
2017-03-15 13:57:25 +01:00
|
|
|
|
|
|
|
{ 'struct': 'Empty',
|
|
|
|
'data': { } }
|
|
|
|
|
2021-03-23 10:40:11 +01:00
|
|
|
{ 'enum': 'FrobType', 'data': ['nothing'] }
|