diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-08-28 14:48:33 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-08-28 14:48:33 -0400 |
commit | 508290e29047e068b9db4b02485fefd9e3ced81c (patch) | |
tree | d3fc8eec392562fbb5c15d431c4b7e3ff8d6a824 /src/lacweb.lex | |
parent | 6cc9b62f90276ce8535ead07a3865cd71d98a526 (diff) |
Transactions and queries, at source level
Diffstat (limited to 'src/lacweb.lex')
-rw-r--r-- | src/lacweb.lex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lacweb.lex b/src/lacweb.lex index b7459675..e593c5fe 100644 --- a/src/lacweb.lex +++ b/src/lacweb.lex @@ -266,6 +266,8 @@ notags = [^<{\n]+; <INITIAL> "~" => (Tokens.TWIDDLE (pos yypos, pos yypos + size yytext)); <INITIAL> "|" => (Tokens.BAR (pos yypos, pos yypos + size yytext)); <INITIAL> "*" => (Tokens.STAR (pos yypos, pos yypos + size yytext)); +<INITIAL> "<-" => (Tokens.LARROW (pos yypos, pos yypos + size yytext)); +<INITIAL> ";" => (Tokens.SEMI (pos yypos, pos yypos + size yytext)); <INITIAL> "con" => (Tokens.CON (pos yypos, pos yypos + size yytext)); <INITIAL> "type" => (Tokens.LTYPE (pos yypos, pos yypos + size yytext)); |