Mercurial > urweb
diff src/lacweb.lex @ 42:b3fbbc6cb1e5
Elaborating 'where'
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 19 Jun 2008 16:35:40 -0400 |
parents | e3d3c2791105 |
children | 0a5c312de09a |
line wrap: on
line diff
--- a/src/lacweb.lex Thu Jun 19 16:04:28 2008 -0400 +++ b/src/lacweb.lex Thu Jun 19 16:35:40 2008 -0400 @@ -134,6 +134,7 @@ <INITIAL> "sig" => (Tokens.SIG (yypos, yypos + size yytext)); <INITIAL> "end" => (Tokens.END (yypos, yypos + size yytext)); <INITIAL> "functor" => (Tokens.FUNCTOR (yypos, yypos + size yytext)); +<INITIAL> "where" => (Tokens.WHERE (yypos, yypos + size yytext)); <INITIAL> "Type" => (Tokens.TYPE (yypos, yypos + size yytext)); <INITIAL> "Name" => (Tokens.NAME (yypos, yypos + size yytext));