More fixes found by self-parsing

This commit is contained in:
2024-10-27 20:22:36 -04:00
parent 908c385de5
commit 420f452d35
2 changed files with 16 additions and 16 deletions

View File

@ -166,7 +166,7 @@ namespace parser {
}
struct ParseInfo
{
Arena FileMem;
Arena TokMem;
Arena CodeMem;
@ -175,7 +175,7 @@ struct ParseInfo
Array<parser::Token> Tokens;
Array<parser::Error> Errors;
// Errors are allocated to a dedicated general arena.
;
};
CodeBody parse_file( StrC path );
#endif