refactor: adapted lexer to work with new tokens

Now its fine, the code i find it clear if one just sits down to read it
for a moment, next is the parser that REALLY needs reworking and a few
helper structs.
This commit is contained in:
2026-05-13 09:49:28 -06:00
parent 2a73f5f9d6
commit f3373123e1
2 changed files with 18 additions and 20 deletions

View File

@@ -61,7 +61,7 @@ typedef struct {
bool is_valid;
union {
LexerErr err;
int64_t number;
int64_t num;
};
} LexerI64Result;