mirror of https://gitee.com/openkylin/qemu.git
16 lines
449 B
JSON
16 lines
449 B
JSON
# we require the base to be a struct
|
|
{ 'enum': 'TestEnum',
|
|
'data': [ 'value1', 'value2' ] }
|
|
{ 'struct': 'TestTypeA',
|
|
'data': { 'string': 'str' } }
|
|
{ 'struct': 'TestTypeB',
|
|
'data': { 'integer': 'int' } }
|
|
{ 'union': 'UnionBase',
|
|
'data': { 'kind1': 'TestTypeA',
|
|
'kind2': 'TestTypeB' } }
|
|
{ 'union': 'TestUnion',
|
|
'base': 'UnionBase',
|
|
'discriminator': 'type',
|
|
'data': { 'kind1': 'TestTypeA',
|
|
'kind2': 'TestTypeB' } }
|