mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
reorganization: Move decompilers
This commit is contained in:
parent
ee5f32622f
commit
1150ae1a09
11 changed files with 138 additions and 140 deletions
|
@ -43,3 +43,12 @@ class Child(AstNode):
|
|||
for child in self.children:
|
||||
child.emit_xml(xml)
|
||||
xml.end_tag()
|
||||
|
||||
|
||||
@decompiler("child")
|
||||
def decompile_child(ctx, gir, type=None, internal_child=None):
|
||||
if type is not None:
|
||||
ctx.print(f"[{type}]")
|
||||
elif internal_child is not None:
|
||||
ctx.print(f"[internal-child {internal_child}]")
|
||||
return gir
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue