qapi/introspect.py: use _make_tree for features nodes
commitd70f5130f6779042f43d315a9bf2dd182e4708c7
authorJohn Snow <jsnow@redhat.com>
Tue, 16 Feb 2021 02:17:53 +0000 (15 21:17 -0500)
committerMarkus Armbruster <armbru@redhat.com>
Thu, 18 Feb 2021 18:37:13 +0000 (18 19:37 +0100)
tree57c665336d82c9094e78116a79775d8940733a8b
parent6b67bcac0f595143f5a5fce4e518b74577bae192
qapi/introspect.py: use _make_tree for features nodes

At present, we open-code this in _make_tree itself; but if the structure
of the tree changes, this is brittle. Use an explicit recursive call to
_make_tree when appropriate to help keep the interior node typing
consistent.

A consequence of doing this is that the 'ifcond' key of the features
dict will be omitted when ifcond is false-ish, just like it is omitted
in top-level calls to _make_tree. This also increases consistency in our
handling of this property.

Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20210216021809.134886-4-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
scripts/qapi/introspect.py