Working on parser refactor

This commit is contained in:
2026-04-29 14:36:42 +02:00
parent 1f40c8f5ee
commit eb4b0495f2
10 changed files with 253 additions and 138 deletions
+1 -1
View File
@@ -241,6 +241,6 @@ Token tokenstream_next(TokenStream* ts) {
/* Unknown character */
t = create_token(ts, TOKEN_UNKNOWN, start_text, 1, start_line, start_column, line_start);
log_on_line(&t.location, t.location.column_end, "unexpected token '%c'", c);
log_on_line(&t.location, "unexpected token '%c'", c);
return t;
}