Mercurial > urweb
diff src/lacweb.lex @ 67:9f89f0b00b84
Elaborating cfold
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 26 Jun 2008 09:48:54 -0400 |
parents | fd8a81ecd598 |
children | b4f2a258e52c |
line wrap: on
line diff
--- a/src/lacweb.lex Thu Jun 26 09:09:30 2008 -0400 +++ b/src/lacweb.lex Thu Jun 26 09:48:54 2008 -0400 @@ -146,6 +146,7 @@ <INITIAL> "type" => (Tokens.LTYPE (pos yypos, pos yypos + size yytext)); <INITIAL> "val" => (Tokens.VAL (pos yypos, pos yypos + size yytext)); <INITIAL> "fn" => (Tokens.FN (pos yypos, pos yypos + size yytext)); +<INITIAL> "fold" => (Tokens.FOLD (pos yypos, pos yypos + size yytext)); <INITIAL> "structure" => (Tokens.STRUCTURE (pos yypos, pos yypos + size yytext)); <INITIAL> "signature" => (Tokens.SIGNATURE (pos yypos, pos yypos + size yytext));