summaryrefslogtreecommitdiff
path: root/src/lacweb.lex
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-09 12:50:49 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-09 12:50:49 -0400
commite699687ba2ff0cc2c7c185c4d99669f77093473b (patch)
treeac9cfeac791b20f1763c72069c1fb1b61a364b24 /src/lacweb.lex
parentbd2d0fe6c8deedc88d985b2c38978b730ff0cd19 (diff)
Tuples syntactic sugar
Diffstat (limited to 'src/lacweb.lex')
-rw-r--r--src/lacweb.lex1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lacweb.lex b/src/lacweb.lex
index 45c9410c..0bb5ca38 100644
--- a/src/lacweb.lex
+++ b/src/lacweb.lex
@@ -250,6 +250,7 @@ notags = [^<{\n]+;
<INITIAL> "_" => (Tokens.UNDER (pos yypos, pos yypos + size yytext));
<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> "con" => (Tokens.CON (pos yypos, pos yypos + size yytext));
<INITIAL> "type" => (Tokens.LTYPE (pos yypos, pos yypos + size yytext));