summaryrefslogtreecommitdiff
path: root/lexer.l
diff options
context:
space:
mode:
Diffstat (limited to 'lexer.l')
-rw-r--r--lexer.l2
1 files changed, 2 insertions, 0 deletions
diff --git a/lexer.l b/lexer.l
index 18937e8..d1844a2 100644
--- a/lexer.l
+++ b/lexer.l
@@ -77,6 +77,7 @@ BROPEN "["
BRCLOSE "]"
POPEN "("
PCLOSE ")"
+COMMA ","
ROOT "$"
THIS "@"
@@ -160,6 +161,7 @@ WS [ \t\n]*
{BRCLOSE} { return T_BRCLOSE; }
{POPEN} { return T_POPEN; }
{PCLOSE} { return T_PCLOSE; }
+{COMMA} { return T_UNION; }
{ROOT} { return T_ROOT; }
{THIS} { return T_THIS; }