qapi: Rename variable holding the QAPISchemaGenFOOVisitor
Rename the variable holding the QAPISchemaGenFOOVisitor from gen to vis, to avoid confusion in the next commit. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20180211093607.27351-5-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com> Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
5ddeec83eb
commit
d46eec4260
@ -289,9 +289,9 @@ void %(c_prefix)sqmp_init_marshal(QmpCommandList *cmds);
|
|||||||
prefix=prefix, c_prefix=c_name(prefix, protect=False)))
|
prefix=prefix, c_prefix=c_name(prefix, protect=False)))
|
||||||
|
|
||||||
schema = QAPISchema(input_file)
|
schema = QAPISchema(input_file)
|
||||||
gen = QAPISchemaGenCommandVisitor()
|
vis = QAPISchemaGenCommandVisitor()
|
||||||
schema.visit(gen)
|
schema.visit(vis)
|
||||||
fdef.write(gen.defn)
|
fdef.write(vis.defn)
|
||||||
fdecl.write(gen.decl)
|
fdecl.write(vis.decl)
|
||||||
|
|
||||||
close_output(fdef, fdecl)
|
close_output(fdef, fdecl)
|
||||||
|
@ -201,9 +201,9 @@ fdecl.write(mcgen('''
|
|||||||
event_enum_name = c_name(prefix + 'QAPIEvent', protect=False)
|
event_enum_name = c_name(prefix + 'QAPIEvent', protect=False)
|
||||||
|
|
||||||
schema = QAPISchema(input_file)
|
schema = QAPISchema(input_file)
|
||||||
gen = QAPISchemaGenEventVisitor()
|
vis = QAPISchemaGenEventVisitor()
|
||||||
schema.visit(gen)
|
schema.visit(vis)
|
||||||
fdef.write(gen.defn)
|
fdef.write(vis.defn)
|
||||||
fdecl.write(gen.decl)
|
fdecl.write(vis.decl)
|
||||||
|
|
||||||
close_output(fdef, fdecl)
|
close_output(fdef, fdecl)
|
||||||
|
@ -191,9 +191,9 @@ fdef.write(mcgen('''
|
|||||||
prefix=prefix))
|
prefix=prefix))
|
||||||
|
|
||||||
schema = QAPISchema(input_file)
|
schema = QAPISchema(input_file)
|
||||||
gen = QAPISchemaGenIntrospectVisitor(opt_unmask)
|
vis = QAPISchemaGenIntrospectVisitor(opt_unmask)
|
||||||
schema.visit(gen)
|
schema.visit(vis)
|
||||||
fdef.write(gen.defn)
|
fdef.write(vis.defn)
|
||||||
fdecl.write(gen.decl)
|
fdecl.write(vis.decl)
|
||||||
|
|
||||||
close_output(fdef, fdecl)
|
close_output(fdef, fdecl)
|
||||||
|
@ -271,9 +271,9 @@ fdecl.write(mcgen('''
|
|||||||
'''))
|
'''))
|
||||||
|
|
||||||
schema = QAPISchema(input_file)
|
schema = QAPISchema(input_file)
|
||||||
gen = QAPISchemaGenTypeVisitor()
|
vis = QAPISchemaGenTypeVisitor()
|
||||||
schema.visit(gen)
|
schema.visit(vis)
|
||||||
fdef.write(gen.defn)
|
fdef.write(vis.defn)
|
||||||
fdecl.write(gen.decl)
|
fdecl.write(vis.decl)
|
||||||
|
|
||||||
close_output(fdef, fdecl)
|
close_output(fdef, fdecl)
|
||||||
|
@ -358,9 +358,9 @@ fdecl.write(mcgen('''
|
|||||||
prefix=prefix))
|
prefix=prefix))
|
||||||
|
|
||||||
schema = QAPISchema(input_file)
|
schema = QAPISchema(input_file)
|
||||||
gen = QAPISchemaGenVisitVisitor()
|
vis = QAPISchemaGenVisitVisitor()
|
||||||
schema.visit(gen)
|
schema.visit(vis)
|
||||||
fdef.write(gen.defn)
|
fdef.write(vis.defn)
|
||||||
fdecl.write(gen.decl)
|
fdecl.write(vis.decl)
|
||||||
|
|
||||||
close_output(fdef, fdecl)
|
close_output(fdef, fdecl)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user