Misc changes (refactors, notes)

This commit is contained in:
2024-06-20 14:39:50 -04:00
parent 03500acb9a
commit 489faf5515
17 changed files with 70 additions and 567 deletions

View File

@ -98,7 +98,7 @@ PWS_LineArray_ReserveSize :: 32 * Kilobyte
PWS_ParseResult :: struct {
content : string,
tokens : Array(PWS_Token),
nodes : Array(PWS_AST), // Nodes should be dumped in a pool.
nodes : Array(PWS_AST), // Nodes should be dumped in a pool?
lines : Array( ^PWS_AST),
errors : [PWS_ParseError_Max] PWS_ParseError,
}