Mercurial > urweb
comparison src/urweb.lex @ 718:f152f215a02c
style declarations
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 12 Apr 2009 10:08:11 -0400 |
parents | 0f42461273cf |
children | 16bfd9e244cd |
comparison
equal
deleted
inserted
replaced
717:e28637743279 | 718:f152f215a02c |
---|---|
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> "class" => (Tokens.CLASS (pos yypos, pos yypos + size yytext)); | 320 <INITIAL> "class" => (Tokens.CLASS (pos yypos, pos yypos + size yytext)); |
321 <INITIAL> "cookie" => (Tokens.COOKIE (pos yypos, pos yypos + size yytext)); | 321 <INITIAL> "cookie" => (Tokens.COOKIE (pos yypos, pos yypos + size yytext)); |
322 <INITIAL> "style" => (Tokens.STYLE (pos yypos, pos yypos + size yytext)); | |
322 | 323 |
323 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); | 324 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); |
324 <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext)); | 325 <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext)); |
325 <INITIAL> "Unit" => (Tokens.KUNIT (pos yypos, pos yypos + size yytext)); | 326 <INITIAL> "Unit" => (Tokens.KUNIT (pos yypos, pos yypos + size yytext)); |
326 | 327 |