aboutsummaryrefslogtreecommitdiff
path: root/lib/lexer.mll
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lib/lexer.mll1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/lexer.mll b/lib/lexer.mll
index e733666..0fb7f7c 100644
--- a/lib/lexer.mll
+++ b/lib/lexer.mll
@@ -15,7 +15,6 @@ 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 }