parser progress

This commit is contained in:
2026-04-14 08:16:02 +02:00
parent 9276476e37
commit c7f287ca7b
3 changed files with 94 additions and 2 deletions

View File

@@ -6,7 +6,10 @@ typedef enum noomP_NodeType {
NOOMP_NODE_VARNAME,
NOOMP_NODE_NUMBERLITERAL,
NOOMP_NODE_LOCALDECLARATION,
NOOMP_NODE_IFSTATEMENT,
NOOMP_NODE_BLOCK,
} noomP_NodeType;
typedef struct noomP_Node {
noomP_NodeType type;