Mercurial > urweb
diff src/urweb.lex @ 1075:0657e5adc938
Convert to task syntax
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 15 Dec 2009 10:19:05 -0500 |
parents | b2311dfb3158 |
children | c023bc6ab914 |
line wrap: on
line diff
--- a/src/urweb.lex Sun Dec 13 14:34:18 2009 -0500 +++ b/src/urweb.lex Tue Dec 15 10:19:05 2009 -0500 @@ -402,7 +402,7 @@ <INITIAL> "class" => (Tokens.CLASS (pos yypos, pos yypos + size yytext)); <INITIAL> "cookie" => (Tokens.COOKIE (pos yypos, pos yypos + size yytext)); <INITIAL> "style" => (Tokens.STYLE (pos yypos, pos yypos + size yytext)); -<INITIAL> "initializer" => (Tokens.INITIALIZER (pos yypos, pos yypos + size yytext)); +<INITIAL> "task" => (Tokens.TASK (pos yypos, pos yypos + size yytext)); <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext));