summaryrefslogtreecommitdiff
path: root/src/lib/lexer.mll
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-09-07 22:33:45 +0200
committerSébastien Dailly <sebastien@chimrod.com>2021-09-07 22:33:45 +0200
commit80b77d19cee0f3df4457005eead1128b90754a48 (patch)
tree52a36a9f68a2ba06631c1a1a48576afb9c617cc8 /src/lib/lexer.mll
parent96a225fb5fa24a71e1b76e0369126b3bcfab5f81 (diff)
Added tests
Diffstat (limited to 'src/lib/lexer.mll')
-rw-r--r--src/lib/lexer.mll1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/lexer.mll b/src/lib/lexer.mll
index 50c25a7..2d6224c 100644
--- a/src/lib/lexer.mll
+++ b/src/lib/lexer.mll
@@ -51,6 +51,7 @@ rule letter = parse
| "el" ending { EL_ }
| "ent" ending { ENT_ }
| "ient" ending { IENT_ }
+| "ie" ending { IE_ }
| "x" ending { X_ }
(* This rule looks for a single line, terminated with '\n' or eof.