summaryrefslogtreecommitdiff
path: root/src/parser.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.l')
-rw-r--r--src/parser.l2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.l b/src/parser.l
index 7957c53..7ceee0a 100644
--- a/src/parser.l
+++ b/src/parser.l
@@ -42,6 +42,7 @@ if { return tokIf; }
42then { return tokThen; } 42then { return tokThen; }
43else { return tokElse; } 43else { return tokElse; }
44command { return tokCommand; } 44command { return tokCommand; }
45option { return tokOption; }
45goto { return tokGoto; } 46goto { return tokGoto; }
46not { return tokNot; } 47not { return tokNot; }
47setup { return tokSetup; } 48setup { return tokSetup; }
@@ -49,6 +50,7 @@ enter { return tokEnter; }
49and { return tokAnd; } 50and { return tokAnd; }
50or { return tokOr; } 51or { return tokOr; }
51return { return tokReturn; } 52return { return tokReturn; }
53ignore { return tokIgnore; }
52 54
53true { yylval->bValue = true; return tokBool; } 55true { yylval->bValue = true; return tokBool; }
54false { yylval->bValue = false; return tokBool; } 56false { yylval->bValue = false; return tokBool; }