diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-02-24 13:46:08 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-02-24 13:46:08 -0500 |
commit | ee3f3e9e0a82141b6831b22d4f1412f5a9fb91d4 (patch) | |
tree | fc4a6f3cb49df2a30d49e29bf871648fafa430fa /src/urweb.lex | |
parent | 7b71af9c790abcff2bfe0a16a417a1023776351d (diff) |
Top.Fold.concat elaborates
Diffstat (limited to 'src/urweb.lex')
-rw-r--r-- | src/urweb.lex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/urweb.lex b/src/urweb.lex index bb57f03d..cbbf2a52 100644 --- a/src/urweb.lex +++ b/src/urweb.lex @@ -276,6 +276,7 @@ notags = [^<{\n]+; <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> "!" => (Tokens.BANG (pos yypos, pos yypos + size yytext)); <INITIAL> "+" => (Tokens.PLUS (pos yypos, pos yypos + size yytext)); <INITIAL> "-" => (Tokens.MINUS (pos yypos, pos yypos + size yytext)); |