Mercurial > urweb
comparison src/lacweb.lex @ 100:f0f59e918cac
page declaration, up through monoize
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 10 Jul 2008 10:11:35 -0400 |
parents | 4327abd52997 |
children | b1e5398a7f30 |
comparison
equal
deleted
inserted
replaced
99:5182f0c80d2e | 100:f0f59e918cac |
---|---|
259 <INITIAL> "extern" => (Tokens.EXTERN (pos yypos, pos yypos + size yytext)); | 259 <INITIAL> "extern" => (Tokens.EXTERN (pos yypos, pos yypos + size yytext)); |
260 <INITIAL> "include" => (Tokens.INCLUDE (pos yypos, pos yypos + size yytext)); | 260 <INITIAL> "include" => (Tokens.INCLUDE (pos yypos, pos yypos + size yytext)); |
261 <INITIAL> "open" => (Tokens.OPEN (pos yypos, pos yypos + size yytext)); | 261 <INITIAL> "open" => (Tokens.OPEN (pos yypos, pos yypos + size yytext)); |
262 <INITIAL> "constraint"=> (Tokens.CONSTRAINT (pos yypos, pos yypos + size yytext)); | 262 <INITIAL> "constraint"=> (Tokens.CONSTRAINT (pos yypos, pos yypos + size yytext)); |
263 <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext)); | 263 <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext)); |
264 <INITIAL> "page" => (Tokens.PAGE (pos yypos, pos yypos + size yytext)); | |
264 | 265 |
265 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); | 266 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); |
266 <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext)); | 267 <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext)); |
267 <INITIAL> "Unit" => (Tokens.KUNIT (pos yypos, pos yypos + size yytext)); | 268 <INITIAL> "Unit" => (Tokens.KUNIT (pos yypos, pos yypos + size yytext)); |
268 | 269 |