add operations

This commit is contained in:
2025-06-10 04:41:06 +01:00
parent 1b90438bb9
commit 86c0eabfde
18 changed files with 207 additions and 68 deletions

View File

@@ -1,12 +1,10 @@
// parser.h
#ifndef iF_H
#define iF_H
#include "../../lexer/token.h" // for Token
#include "../parser.h"
typedef struct {
DArray *condition; // NULL for 'else'
ParsedValue * condition; // NULL for 'else'
ParsedValue *content;
} ParsedConditional;