Mercurial > urweb
diff src/urweb.lex @ 268:bacd0ba869e1
Monoize ASC/DESC
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 31 Aug 2008 16:54:13 -0400 |
parents | 71bafe66dbe1 |
children | bc89dfdbc495 |
line wrap: on
line diff
--- a/src/urweb.lex Sun Aug 31 16:32:49 2008 -0400 +++ b/src/urweb.lex Sun Aug 31 16:54:13 2008 -0400 @@ -332,6 +332,9 @@ <INITIAL> "MIN" => (Tokens.MIN (pos yypos, pos yypos + size yytext)); <INITIAL> "MAX" => (Tokens.MAX (pos yypos, pos yypos + size yytext)); +<INITIAL> "ASC" => (Tokens.ASC (pos yypos, pos yypos + size yytext)); +<INITIAL> "DESC" => (Tokens.DESC (pos yypos, pos yypos + size yytext)); + <INITIAL> {id} => (Tokens.SYMBOL (yytext, pos yypos, pos yypos + size yytext)); <INITIAL> {cid} => (Tokens.CSYMBOL (yytext, pos yypos, pos yypos + size yytext));