12 lines
385 B
JSON
12 lines
385 B
JSON
# we require branches to be a struct name
|
|
# TODO: should we allow anonymous inline branch types?
|
|
{ 'enum': 'TestEnum',
|
|
'data': [ 'value1', 'value2' ] }
|
|
{ 'struct': 'Base',
|
|
'data': { 'enum1': 'TestEnum', 'kind': 'str' } }
|
|
{ 'union': 'TestUnion',
|
|
'base': 'Base',
|
|
'discriminator': 'enum1',
|
|
'data': { 'value1': { 'string': 'str' },
|
|
'value2': { 'integer': 'int' } } }
|