aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/urweb.lex
diff options
context:
space:
mode:
Diffstat (limited to 'src/urweb.lex')
-rw-r--r--src/urweb.lex1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/urweb.lex b/src/urweb.lex
index a3c34a16..fd8a8077 100644
--- a/src/urweb.lex
+++ b/src/urweb.lex
@@ -278,6 +278,7 @@ notags = [^<{\n]+;
<INITIAL> "-" => (Tokens.MINUS (pos yypos, pos yypos + size yytext));
<INITIAL> "/" => (Tokens.DIVIDE (yypos, yypos + size yytext));
<INITIAL> "%" => (Tokens.MOD (pos yypos, pos yypos + size yytext));
+<INITIAL> "@" => (Tokens.AT (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));