cleanup(selfhost): remove 24 DEBUG prints + stale parser HACK

- Remove DEBUG prints from c_backend.bux, hir_lower.bux, lexer.bux, parser.bux
- Remove HACK for stray } in parserParseFuncDecl (no longer needed after
  Decl refactor in 4a86009)
- Clean selfhost check/build output
This commit is contained in:
2026-06-09 15:48:38 +03:00
parent 4a860095fd
commit 64bd41067a
4 changed files with 0 additions and 43 deletions
-5
View File
@@ -323,11 +323,6 @@ func lexScanIdent(lex: *Lexer) {
lex.tokens[lex.tokenCount] = tok;
lex.tokenCount = lex.tokenCount + 1;
}
if String_StartsWith(tok.text, "field") {
PrintLine(String_Concat("DEBUG lexer ident=", tok.text));
PrintLine(String_Concat("DEBUG lexer addr=", bux_int_to_str(tok.text as int64)));
PrintLine(String_Concat("DEBUG lexer pos=", bux_int_to_str(lex.tokenCount as int64)));
}
}
// ---------------------------------------------------------------------------