cgen: inline
parent
3f480a358e
commit
77d41d03f5
|
@ -334,7 +334,11 @@ fn (g mut Gen) stmt(node ast.Stmt) {
|
||||||
g.gen_assign_stmt(it)
|
g.gen_assign_stmt(it)
|
||||||
}
|
}
|
||||||
ast.Attr {
|
ast.Attr {
|
||||||
g.writeln('//[$it.name]')
|
if it.name == 'inline' {
|
||||||
|
g.writeln(it.name)
|
||||||
|
} else {
|
||||||
|
g.writeln('//[$it.name]')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
ast.Block {
|
ast.Block {
|
||||||
g.writeln('{')
|
g.writeln('{')
|
||||||
|
|
Loading…
Reference in New Issue