use ast.Table store new_int

This commit is contained in:
kbkpbot 2025-09-13 19:10:28 +08:00
parent 1bdf70f4be
commit 57ea60617e
8 changed files with 39 additions and 34 deletions

View file

@ -142,8 +142,7 @@ pub fn (mut d Doc) stmt_signature(stmt ast.Stmt) string {
return 'module ${stmt.name}'
}
ast.FnDecl {
return d.table.stringify_fn_decl(&stmt, d.fmt.cur_mod, d.fmt.mod2alias, false,
false)
return d.table.stringify_fn_decl(&stmt, d.fmt.cur_mod, d.fmt.mod2alias, false)
}
else {
d.fmt.out = strings.new_builder(1000)