From 5036848184a912a857c4c1e76ef02985295855eb Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Mon, 25 Dec 2023 19:17:01 -0600 Subject: Support semicolon as separator --- lib/lexer.mll | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/lexer.mll') diff --git a/lib/lexer.mll b/lib/lexer.mll index e8a7a73..41a2abc 100644 --- a/lib/lexer.mll +++ b/lib/lexer.mll @@ -20,6 +20,7 @@ rule read = | "uuidv4" { UUIDV4 } | "name" { NAME } | ":" { COLON } + | ";" { SEMICOLON } | "," { COMMA } | "\n" { NEWLINE } | "." { DOT } -- cgit v1.2.3