aboutsummaryrefslogtreecommitdiff
path: root/lib/lexer.mll
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2023-12-26 16:11:04 -0600
committerMarc Coquand <marc@mccd.space>2023-12-26 16:11:04 -0600
commitbe3bb5300d30a19d22b68db07292d03dc16499d3 (patch)
treea90ec7088d3d837101ef2a886be4402c04635415 /lib/lexer.mll
parent353394783ae8503363ea751f81a5316ba7c4b3c9 (diff)
downloadfixgen-be3bb5300d30a19d22b68db07292d03dc16499d3.tar.gz
fixgen-be3bb5300d30a19d22b68db07292d03dc16499d3.tar.bz2
fixgen-be3bb5300d30a19d22b68db07292d03dc16499d3.zip
Update TODO list
Diffstat (limited to 'lib/lexer.mll')
-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 }