summaryrefslogtreecommitdiff
path: root/src/lacweb.lex
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-01 12:10:46 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-01 12:10:46 -0400
commit7628e1d8f7f8199531c9bc08a774c9a9e2bc5d63 (patch)
tree3d434c77c5ec6ac3660a553072e1c1ba26cd4665 /src/lacweb.lex
parentd28cad7cc5881018717c7e875c99c51469da9d44 (diff)
Disjointness assumptions
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 45e2f1f2..3fa0b45c 100644
--- a/src/lacweb.lex
+++ b/src/lacweb.lex
@@ -142,6 +142,7 @@ realconst = [0-9]+\.[0-9]*;
<INITIAL> "#" => (Tokens.HASH (pos yypos, pos yypos + size yytext));
<INITIAL> "__" => (Tokens.UNDERUNDER (pos yypos, pos yypos + size yytext));
<INITIAL> "_" => (Tokens.UNDER (pos yypos, pos yypos + size yytext));
+<INITIAL> "~" => (Tokens.TWIDDLE (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));