I added some more backpatching and some more files for testing

This commit is contained in:
Meyer Simon
2025-05-04 17:43:08 -04:00
parent 4ae76d0341
commit 61cc807b8a
8 changed files with 113 additions and 18 deletions

View File

@ -309,6 +309,8 @@ void emit_return(TNodeOrConst * value){
}
void emit_reserve(TableNode * result, TNodeOrConst * size){
// this needs to change
// we need to take a int
emit_parameter(size);
emit_function_call(result, 1, tn_or_const(NODE, look_up(cur, "reserve")));
}