diff options
Diffstat (limited to 'src/lacweb.lex')
-rw-r--r-- | src/lacweb.lex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lacweb.lex b/src/lacweb.lex index 3fc6577c..8a57dba9 100644 --- a/src/lacweb.lex +++ b/src/lacweb.lex @@ -261,6 +261,7 @@ notags = [^<{\n]+; <INITIAL> "open" => (Tokens.OPEN (pos yypos, pos yypos + size yytext)); <INITIAL> "constraint"=> (Tokens.CONSTRAINT (pos yypos, pos yypos + size yytext)); <INITIAL> "constraints"=> (Tokens.CONSTRAINTS (pos yypos, pos yypos + size yytext)); +<INITIAL> "page" => (Tokens.PAGE (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)); |