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 7ceee0a..70704b8 100644
--- a/src/parser.l
+++ b/src/parser.l
@@ -51,6 +51,8 @@ and { return tokAnd; }
51or { return tokOr; } 51or { return tokOr; }
52return { return tokReturn; } 52return { return tokReturn; }
53ignore { return tokIgnore; } 53ignore { return tokIgnore; }
54exists { return tokExists; }
55delete { return tokDelete; }
54 56
55true { yylval->bValue = true; return tokBool; } 57true { yylval->bValue = true; return tokBool; }
56false { yylval->bValue = false; return tokBool; } 58false { yylval->bValue = false; return tokBool; }