comparison src/lacweb.lex @ 109:813e5a52063d

Remove closure conversion in favor of zany fun with modules, which also replaces 'page'
author Adam Chlipala <adamc@hcoop.net>
date Sun, 13 Jul 2008 10:17:06 -0400
parents b1e5398a7f30
children 3739af9e727a
comparison
equal deleted inserted replaced
108:f59553dc1b6a 109:813e5a52063d
262 <INITIAL> "extern" => (Tokens.EXTERN (pos yypos, pos yypos + size yytext)); 262 <INITIAL> "extern" => (Tokens.EXTERN (pos yypos, pos yypos + size yytext));
263 <INITIAL> "include" => (Tokens.INCLUDE (pos yypos, pos yypos + size yytext)); 263 <INITIAL> "include" => (Tokens.INCLUDE (pos yypos, pos yypos + size yytext));
264 <INITIAL> "open" => (Tokens.OPEN (pos yypos, pos yypos + size yytext)); 264 <INITIAL> "open" => (Tokens.OPEN (pos yypos, pos yypos + size yytext));
265 <INITIAL> "constraint"=> (Tokens.CONSTRAINT (pos yypos, pos yypos + size yytext)); 265 <INITIAL> "constraint"=> (Tokens.CONSTRAINT (pos yypos, pos yypos + size yytext));
266 <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext)); 266 <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext));
267 <INITIAL> "page" => (Tokens.PAGE (pos yypos, pos yypos + size yytext)); 267 <INITIAL> "export" => (Tokens.EXPORT (pos yypos, pos yypos + size yytext));
268 268
269 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); 269 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext));
270 <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext)); 270 <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext));
271 <INITIAL> "Unit" => (Tokens.KUNIT (pos yypos, pos yypos + size yytext)); 271 <INITIAL> "Unit" => (Tokens.KUNIT (pos yypos, pos yypos + size yytext));
272 272