Break and continue keywords are working

This commit is contained in:
2022-08-20 20:08:22 +01:00
parent daceaa5492
commit 18c5fb6add
7 changed files with 194 additions and 35 deletions

View File

@@ -65,6 +65,8 @@ void freeNode(Node* node) {
case NODE_PATH_IF:
case NODE_PATH_WHILE:
case NODE_PATH_FOR:
case NODE_PATH_BREAK:
case NODE_PATH_CONTINUE:
freeNode(node->path.preClause);
freeNode(node->path.postClause);
freeNode(node->path.condition);