Minor tweaks

This commit is contained in:
2022-08-08 03:42:48 +01:00
parent ceeca9d40f
commit 3fb952e3c2
4 changed files with 10 additions and 2 deletions

View File

@@ -79,6 +79,8 @@ void writeCompiler(Compiler* compiler, Node* node) {
writeCompiler(compiler, node->grouping.child);
compiler->bytecode[compiler->count++] = (unsigned char)OP_GROUPING_END; //1 byte
break;
//TODO: conditional
}
}