Mercurial > urweb
comparison src/urweb.lex @ 445:dfc8c991abd0
Replace 'with' with '++'
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Fri, 31 Oct 2008 09:30:22 -0400 |
parents | c5335613f31e |
children | 86c063fedc4d |
comparison
equal
deleted
inserted
replaced
444:f45f23ae20ed | 445:dfc8c991abd0 |
---|---|
309 <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext)); | 309 <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext)); |
310 <INITIAL> "export" => (Tokens.EXPORT (pos yypos, pos yypos + size yytext)); | 310 <INITIAL> "export" => (Tokens.EXPORT (pos yypos, pos yypos + size yytext)); |
311 <INITIAL> "table" => (Tokens.TABLE (pos yypos, pos yypos + size yytext)); | 311 <INITIAL> "table" => (Tokens.TABLE (pos yypos, pos yypos + size yytext)); |
312 <INITIAL> "sequence" => (Tokens.SEQUENCE (pos yypos, pos yypos + size yytext)); | 312 <INITIAL> "sequence" => (Tokens.SEQUENCE (pos yypos, pos yypos + size yytext)); |
313 <INITIAL> "class" => (Tokens.CLASS (pos yypos, pos yypos + size yytext)); | 313 <INITIAL> "class" => (Tokens.CLASS (pos yypos, pos yypos + size yytext)); |
314 <INITIAL> "with" => (Tokens.WITH (pos yypos, pos yypos + size yytext)); | |
315 | 314 |
316 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); | 315 <INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext)); |
317 <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext)); | 316 <INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext)); |
318 <INITIAL> "Unit" => (Tokens.KUNIT (pos yypos, pos yypos + size yytext)); | 317 <INITIAL> "Unit" => (Tokens.KUNIT (pos yypos, pos yypos + size yytext)); |
319 | 318 |