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:
@@ -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)));
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user