Marc-André Lureau <marcandre.lur...@redhat.com> writes: > The generator now accepts (obj, condition) tuples to wrap generated > QLit objects for 'obj' with #if/#endif conditions. > > Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com> > --- > scripts/qapi-introspect.py | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/scripts/qapi-introspect.py b/scripts/qapi-introspect.py > index b1d08ec97b..dc70954e8a 100644 > --- a/scripts/qapi-introspect.py > +++ b/scripts/qapi-introspect.py > @@ -17,6 +17,13 @@ def to_qlit(obj, level=0, suppress_first_indent=False): > def indent(level): > return level * 4 * ' ' > > + if isinstance(obj, tuple): > + ifobj, ifcond = obj > + ret = gen_if(ifcond) > + ret += to_qlit(ifobj, level) > + ret += '\n' + gen_endif(ifcond) > + return ret > + > ret = '' > if not suppress_first_indent: > ret += indent(level)
Reviewed-by: Markus Armbruster <arm...@redhat.com>