diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2022-03-21 17:42:41 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2022-04-21 10:11:25 +0200 |
commit | a58069494ded1282c36b7fca8d67bf487c160983 (patch) | |
tree | c6de12c9b556a9b22d3d2bad9d99c6057402daa5 /tests/qapi-schema/alternate-array.out | |
parent | 9c125d17e9402c232c46610802e5931b3639d77b (diff) |
qapi-schema: support alternates with array type
Detect array types as alternate branches, and turn the JSON list into
a QAPISchemaArrayType. Array types in an alternate are represented with
QTYPE_QLIST in the type field.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20220321164243.200569-2-pbonzini@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'tests/qapi-schema/alternate-array.out')
-rw-r--r-- | tests/qapi-schema/alternate-array.out | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/qapi-schema/alternate-array.out b/tests/qapi-schema/alternate-array.out index e69de29bb2..a657d85738 100644 --- a/tests/qapi-schema/alternate-array.out +++ b/tests/qapi-schema/alternate-array.out @@ -0,0 +1,18 @@ +module ./builtin +object q_empty +enum QType + prefix QTYPE + member none + member qnull + member qnum + member qstring + member qdict + member qlist + member qbool +module alternate-array.json +object One + member name: str optional=False +alternate Alt + tag type + case one: One + case two: intList |