aboutsummaryrefslogtreecommitdiff
path: root/lib/lexer.mll
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lexer.mll')
-rw-r--r--lib/lexer.mll1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/lexer.mll b/lib/lexer.mll
index c6f2b93..e2f6469 100644
--- a/lib/lexer.mll
+++ b/lib/lexer.mll
@@ -15,6 +15,7 @@ let id = ['a'-'z' 'A'-'Z' '-']*
let newline = '\r' | '\n' | "\r\n"
let many_newline = newline+
+(* TODO: Support _ and - in identifiers *)
rule read =
parse
| "uuidv4" { UUIDV4 }