diff options
author | Marc Coquand <marc@mccd.space> | 2023-12-26 16:11:04 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2023-12-26 16:11:04 -0600 |
commit | be3bb5300d30a19d22b68db07292d03dc16499d3 (patch) | |
tree | a90ec7088d3d837101ef2a886be4402c04635415 /lib/lexer.mll | |
parent | 353394783ae8503363ea751f81a5316ba7c4b3c9 (diff) | |
download | fixgen-be3bb5300d30a19d22b68db07292d03dc16499d3.tar.gz fixgen-be3bb5300d30a19d22b68db07292d03dc16499d3.tar.bz2 fixgen-be3bb5300d30a19d22b68db07292d03dc16499d3.zip |
Update TODO list
Diffstat (limited to '')
-rw-r--r-- | lib/lexer.mll | 1 |
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 } |