summaryrefslogtreecommitdiff
path: root/src/lacweb.lex
diff options
context:
space:
mode:
Diffstat (limited to 'src/lacweb.lex')
-rw-r--r--src/lacweb.lex2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lacweb.lex b/src/lacweb.lex
index 18c5a9e9..a821cc9e 100644
--- a/src/lacweb.lex
+++ b/src/lacweb.lex
@@ -155,6 +155,8 @@ realconst = [0-9]+\.[0-9]*;
<INITIAL> "functor" => (Tokens.FUNCTOR (pos yypos, pos yypos + size yytext));
<INITIAL> "where" => (Tokens.WHERE (pos yypos, pos yypos + size yytext));
<INITIAL> "extern" => (Tokens.EXTERN (pos yypos, pos yypos + size yytext));
+<INITIAL> "include" => (Tokens.INCLUDE (pos yypos, pos yypos + size yytext));
+<INITIAL> "open" => (Tokens.OPEN (pos yypos, pos yypos + size yytext));
<INITIAL> "Type" => (Tokens.TYPE (pos yypos, pos yypos + size yytext));
<INITIAL> "Name" => (Tokens.NAME (pos yypos, pos yypos + size yytext));