mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Internals: Fix astgen spacing
This commit is contained in:
parent
afeca21d73
commit
b7e5486baa
@ -913,7 +913,7 @@ def write_ast_impl(filename):
|
||||
with open_file(filename) as fh:
|
||||
|
||||
def emitBlock(pattern, **fmt):
|
||||
fh.write(textwrap.indent(textwrap.dedent(pattern), " ").format(**fmt))
|
||||
fh.write(pattern.format(**fmt))
|
||||
|
||||
for node in AstNodeList:
|
||||
if node.name == "Node":
|
||||
@ -931,7 +931,8 @@ def write_ast_impl(filename):
|
||||
" BROKEN_RTN(!m_{name}->brokeExists());\n",
|
||||
name=ptr['name'])
|
||||
# Node's broken rules can be specialized by declaring broken()
|
||||
emitBlock(" return Ast{t}::broken(); }}\n", t=node.name)
|
||||
emitBlock(" return Ast{t}::broken();\n", t=node.name)
|
||||
emitBlock("}}\n", t=node.name)
|
||||
|
||||
emitBlock("void Ast{t}::cloneRelinkGen() {{\n", t=node.name)
|
||||
if node.superClass.name != 'Node':
|
||||
|
Loading…
Reference in New Issue
Block a user