Added back a way to stringify the TokenType. Updated the way the Parser syncs and added the start of parsing of opcodes.

This commit is contained in:
2025-06-28 23:59:14 -05:00
parent 428556a7a1
commit 39320c7b69
5 changed files with 159 additions and 12 deletions
+1
View File
@@ -51,5 +51,6 @@ extern const Token TokenEmpty;
Token* TokenCreate(TokenType type, int lineNumber, int columnNumber, bool resolved);
char* TokenStringify(const Token* token);
void TokenTypeStringify(TokenType type, char buffer[32]);
#endif