summaryrefslogtreecommitdiff
path: root/src/curly_lexer.mll
diff options
context:
space:
mode:
Diffstat (limited to 'src/curly_lexer.mll')
-rw-r--r--src/curly_lexer.mll4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/curly_lexer.mll b/src/curly_lexer.mll
index 6d2bc87..32e566a 100644
--- a/src/curly_lexer.mll
+++ b/src/curly_lexer.mll
@@ -19,6 +19,10 @@ rule token = parse
{ Lexing.new_line lexbuf ; token lexbuf }
| "/*"
{ read_comment (Buffer.create 16) lexbuf }
+| "#INACTIVE"
+ { INACTIVE }
+| "#EPHEMERAL"
+ { EPHEMERAL }
| '{'
{ LEFT_BRACE }
| '}'