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

@@ -21,6 +21,8 @@ typedef enum NodeType {
NODE_PATH_IF, //for control flow
NODE_PATH_WHILE, //for control flow
NODE_PATH_FOR, //for control flow
NODE_PATH_BREAK,
NODE_PATH_CONTINUE,
} NodeType;
typedef struct NodeLiteral {