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.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/curly_lexer.mll b/src/curly_lexer.mll
index 8086648..6254358 100644
--- a/src/curly_lexer.mll
+++ b/src/curly_lexer.mll
@@ -19,7 +19,7 @@ rule token = parse
{ RIGHT_BRACKET }
| ';'
{ SEMI }
-| ['a' - 'z' 'A' - 'Z' '0' - '9' '-' '.' ]+ as s
+| ['a' -'z' 'A' - 'Z' '0' - '9' '.' '/' ':' '@' '$' '-' ]+ as s
{ IDENTIFIER s}
| eof
{ EOF }