vfmt: support for 64bit int 2

This commit is contained in:
kbkpbot 2025-09-13 17:04:10 +08:00
parent c221b3226b
commit 98d207fdd0
8 changed files with 103 additions and 56 deletions

View file

@ -142,7 +142,8 @@ 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)
return d.table.stringify_fn_decl(&stmt, d.fmt.cur_mod, d.fmt.mod2alias, false,
false)
}
else {
d.fmt.out = strings.new_builder(1000)