diff options
author | Marc Coquand <marc@mccd.space> | 2023-12-25 19:17:01 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2023-12-26 09:57:19 -0600 |
commit | 5036848184a912a857c4c1e76ef02985295855eb (patch) | |
tree | 477f22604eb55124891a90a221d36c8f607406c9 /lib/parser.mly | |
parent | edc71c5d9f4e4f6f889436ddb6134292b80a9d14 (diff) | |
download | fixgen-5036848184a912a857c4c1e76ef02985295855eb.tar.gz fixgen-5036848184a912a857c4c1e76ef02985295855eb.tar.bz2 fixgen-5036848184a912a857c4c1e76ef02985295855eb.zip |
Support semicolon as separator
Diffstat (limited to '')
-rw-r--r-- | lib/parser.mly | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/parser.mly b/lib/parser.mly index f2f53fd..3d57961 100644 --- a/lib/parser.mly +++ b/lib/parser.mly @@ -5,6 +5,7 @@ %token <string> IDENTIFIER %token UUIDV4 %token NEWLINE +%token SEMICOLON %token NAME %token COLON %token DOT @@ -18,6 +19,7 @@ prog: expr: | tbl = IDENTIFIER; COLON; r = row; NEWLINE; e = expr { Table (tbl,r, e) } + | tbl = IDENTIFIER; COLON; r = row; SEMICOLON; e = expr { Table (tbl,r, e) } | tbl = IDENTIFIER; COLON; r = row { Table (tbl,r, End) } ; |