2015-05-04 18:05:22 +03:00
|
|
|
# we require the discriminator to be non-optional
|
2015-05-04 18:05:05 +03:00
|
|
|
{ 'enum': 'Enum', 'data': [ 'one', 'two' ] }
|
2015-05-04 18:05:27 +03:00
|
|
|
{ 'struct': 'Base',
|
2015-05-04 18:05:05 +03:00
|
|
|
'data': { '*switch': 'Enum' } }
|
2015-05-04 18:05:27 +03:00
|
|
|
{ 'struct': 'Branch', 'data': { 'name': 'str' } }
|
2015-05-04 18:05:05 +03:00
|
|
|
{ 'union': 'MyUnion',
|
|
|
|
'base': 'Base',
|
2019-09-14 18:34:50 +03:00
|
|
|
'discriminator': 'switch',
|
2015-05-04 18:05:05 +03:00
|
|
|
'data': { 'one': 'Branch',
|
|
|
|
'two': 'Branch' } }
|