Fixes towards parsing (getting to line 12575 now of the singleheader.

This commit is contained in:
2023-08-02 12:39:35 -04:00
parent 4c8a0f0005
commit b96b0821c1
14 changed files with 265 additions and 51 deletions

View File

@ -20,12 +20,12 @@ void check_singleheader_ast()
log_fmt("generated AST!!!\n");
// s32 idx = 0;
// for ( Code entry : ast )
// {
// log_fmt("Entry %d: %s", idx, entry.to_string() );
// idx++;
// }
s32 idx = 0;
for ( Code entry : ast )
{
log_fmt("Entry %d: %s\n", idx, entry.to_string() );
idx++;
}
Builder builder;
builder.open( "singleheader_copy.gen.hpp" );