diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-28 20:33:23 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-28 20:33:23 -0700 |
commit | 936314c70f9356db993cfbe781919026e2df042c (patch) | |
tree | 670c51fc9f584330465b1f7cae24c150b74cd653 /parser.y | |
parent | 6904e21fc2f939df8cb06be0ce3407d79491b0a6 (diff) | |
download | txr-936314c70f9356db993cfbe781919026e2df042c.tar.gz txr-936314c70f9356db993cfbe781919026e2df042c.tar.bz2 txr-936314c70f9356db993cfbe781919026e2df042c.zip |
json: two parser bugfixes.
* parser.y (json): Add forgotten call end_of_json in
the '^' production.
(json_val): Pass zero to vector, not 0 which is nil.
* y.tab.c.shipped: Updated.
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -942,13 +942,14 @@ json : HASH_J json_val { $$ = list(json_s, quote_s, $2, nao); end_of_json(scnr); } | HASH_J '^' { parser->quasi_level++; } json_val { parser->quasi_level--; + end_of_json(scnr); $$ = list(json_s, sys_qquote_s, $4, nao); } json_val : NUMBER { $$ = $1; } | JSKW { $$ = $1; } | '"' '"' { $$ = null_string; } | '"' litchars '"' { $$ = $2; rl($$, num(parser->lineno)); } - | '[' ']' { $$ = vector(0, nil); } + | '[' ']' { $$ = vector(zero, nil); } | '[' json_vals ']' { $$ = if3(vectorp($2), $2, rl(cons(vector_lit_s, |