Mercurial > urweb
comparison src/urweb.lex @ 754:8688e01ae469
A view query works
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 28 Apr 2009 15:04:37 -0400 |
parents | f95d652086cd |
children | af41ec2f302a |
comparison
equal
deleted
inserted
replaced
753:d484df4e841a | 754:8688e01ae469 |
---|---|
315 <INITIAL> "constraint"=> (Tokens.CONSTRAINT (pos yypos, pos yypos + size yytext)); | 315 <INITIAL> "constraint"=> (Tokens.CONSTRAINT (pos yypos, pos yypos + size yytext)); |
316 <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext)); | 316 <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext)); |
317 <INITIAL> "export" => (Tokens.EXPORT (pos yypos, pos yypos + size yytext)); | 317 <INITIAL> "export" => (Tokens.EXPORT (pos yypos, pos yypos + size yytext)); |
318 <INITIAL> "table" => (Tokens.TABLE (pos yypos, pos yypos + size yytext)); | 318 <INITIAL> "table" => (Tokens.TABLE (pos yypos, pos yypos + size yytext)); |
319 <INITIAL> "sequence" => (Tokens.SEQUENCE (pos yypos, pos yypos + size yytext)); | 319 <INITIAL> "sequence" => (Tokens.SEQUENCE (pos yypos, pos yypos + size yytext)); |
320 <INITIAL> "view" => (Tokens.VIEW (pos yypos, pos yypos + size yytext)); | |
320 <INITIAL> "class" => (Tokens.CLASS (pos yypos, pos yypos + size yytext)); | 321 <INITIAL> "class" => (Tokens.CLASS (pos yypos, pos yypos + size yytext)); |
321 <INITIAL> "cookie" => (Tokens.COOKIE (pos yypos, pos yypos + size yytext)); | 322 <INITIAL> "cookie" => (Tokens.COOKIE (pos yypos, pos yypos + size yytext)); |
322 <INITIAL> "style" => (Tokens.STYLE (pos yypos, pos yypos + size yytext)); | 323 <INITIAL> "style" => (Tokens.STYLE (pos yypos, pos yypos + size yytext)); |
323 | 324 |
324 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); | 325 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); |