aboutsummaryrefslogtreecommitdiff
path: root/include/lexer.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-07-27 16:10:40 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-07-27 16:10:40 +0530
commit581e1f1529b7cc842f5f54a19381041ef3350b7e (patch)
tree7f918639f722fb705a949a4b9fc2e5740fb0b1ff /include/lexer.h
parentf3d6567598c90746925b45d76b201b4fa2e4b3de (diff)
lexer: add FOR, ENDFOR to possible directives
Diffstat (limited to 'include/lexer.h')
-rw-r--r--include/lexer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/lexer.h b/include/lexer.h
index 0831e90..4bcd07f 100644
--- a/include/lexer.h
+++ b/include/lexer.h
@@ -11,7 +11,9 @@ typedef enum {
CONTENT,
CONTENTFOR,
ENDCONTENT,
- BODY
+ BODY,
+ FOR,
+ ENDFOR
} directive_e;
typedef struct {