mirror of
https://github.com/qemu/qemu.git
synced 2025-08-16 14:54:29 +00:00
qapi: Simplify how QAPISchemaIfCond represents "no condition"
None works fine, there is no need to replace it by {} in .__init__(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20210831123809.1107782-3-armbru@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
1889e57a71
commit
e46c930cdd
@ -200,7 +200,7 @@ def guardend(name: str) -> str:
|
|||||||
name=c_fname(name).upper())
|
name=c_fname(name).upper())
|
||||||
|
|
||||||
|
|
||||||
def cgen_ifcond(ifcond: Union[str, Dict[str, Any]]) -> str:
|
def cgen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]]) -> str:
|
||||||
if not ifcond:
|
if not ifcond:
|
||||||
return ''
|
return ''
|
||||||
if isinstance(ifcond, str):
|
if isinstance(ifcond, str):
|
||||||
@ -214,7 +214,7 @@ def cgen_ifcond(ifcond: Union[str, Dict[str, Any]]) -> str:
|
|||||||
return '(' + (') ' + oper + ' (').join(operands) + ')'
|
return '(' + (') ' + oper + ' (').join(operands) + ')'
|
||||||
|
|
||||||
|
|
||||||
def docgen_ifcond(ifcond: Union[str, Dict[str, Any]]) -> str:
|
def docgen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]]) -> str:
|
||||||
# TODO Doc generated for conditions needs polish
|
# TODO Doc generated for conditions needs polish
|
||||||
if not ifcond:
|
if not ifcond:
|
||||||
return ''
|
return ''
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
class QAPISchemaIfCond:
|
class QAPISchemaIfCond:
|
||||||
def __init__(self, ifcond=None):
|
def __init__(self, ifcond=None):
|
||||||
self.ifcond = ifcond or {}
|
self.ifcond = ifcond
|
||||||
|
|
||||||
def _cgen(self):
|
def _cgen(self):
|
||||||
return cgen_ifcond(self.ifcond)
|
return cgen_ifcond(self.ifcond)
|
||||||
|
Loading…
Reference in New Issue
Block a user