diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-10-21 16:41:11 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-10-21 16:41:11 -0400 |
commit | 1a5acb4732536e4be288895eb89d139b19aebc94 (patch) | |
tree | e4856ac916556022e401a21e2ff722af1b472aa1 /src/urweb.lex | |
parent | a3418cf924752accf2f68fc2673da2a661276ae5 (diff) |
New implicit argument handling
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 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)); |