mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 06:43:53 -06:00
qapi: use explicitly internal module names
QAPISchemaModularCVisitor._add_system_module() prefixes './' to its name argument to make it a module name. Pass the module name instead. This will allow us to coalesce the methods to add modules later on. Signed-off-by: John Snow <jsnow@redhat.com> Message-Id: <20210201193747.2169670-8-jsnow@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> [Commit message reworded] Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
f3a705928a
commit
12893a8ea7
3 changed files with 4 additions and 3 deletions
|
@ -285,7 +285,8 @@ class QAPISchemaModularCVisitor(QAPISchemaVisitor):
|
|||
self._add_module(name, blurb)
|
||||
|
||||
def _add_system_module(self, name: Optional[str], blurb: str) -> None:
|
||||
self._add_module(name and './' + name, blurb)
|
||||
assert QAPISchemaModule.is_system_module(name)
|
||||
self._add_module(name, blurb)
|
||||
|
||||
def write(self, output_dir: str, opt_builtins: bool = False) -> None:
|
||||
for name in self._module:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue