summaryrefslogtreecommitdiff
path: root/src/lacweb.lex
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-28 11:59:46 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-28 11:59:46 -0400
commitfe8bd11ade81a5835d72c498a763c13c17fddd25 (patch)
tree5ed3eba6ef836ed2e6a42d9561bafc183ec9f7a3 /src/lacweb.lex
parent595c8e8d87d9f91e454654c3d7ad9dd49a1bfd93 (diff)
COUNT
Diffstat (limited to 'src/lacweb.lex')
-rw-r--r--src/lacweb.lex2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lacweb.lex b/src/lacweb.lex
index f67eada7..08e39c81 100644
--- a/src/lacweb.lex
+++ b/src/lacweb.lex
@@ -323,6 +323,8 @@ notags = [^<{\n]+;
<INITIAL> "OR" => (Tokens.OR (pos yypos, pos yypos + size yytext));
<INITIAL> "NOT" => (Tokens.NOT (pos yypos, pos yypos + size yytext));
+<INITIAL> "COUNT" => (Tokens.COUNT (pos yypos, pos yypos + size yytext));
+
<INITIAL> {id} => (Tokens.SYMBOL (yytext, pos yypos, pos yypos + size yytext));
<INITIAL> {cid} => (Tokens.CSYMBOL (yytext, pos yypos, pos yypos + size yytext));