diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-27 07:21:41 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-27 07:21:41 -0700 |
commit | eb09240dfca5e21d5920ec8ea8aef6bb73625c9b (patch) | |
tree | f4f9eb1167059eea645316f5dee91677701e3f18 /parser.y | |
parent | 145893075eb1fc99a5c69276ee073fe31ce9bc12 (diff) | |
download | txr-eb09240dfca5e21d5920ec8ea8aef6bb73625c9b.tar.gz txr-eb09240dfca5e21d5920ec8ea8aef6bb73625c9b.tar.bz2 txr-eb09240dfca5e21d5920ec8ea8aef6bb73625c9b.zip |
json: omission in quasiquoted array.
* parser.y (json_val): Handle json_vals being a list,
indicating quasiquoting. We must nreverse it and turn it into
a sys:vector-lit form.
* y.tab.c.shipped: Updated.
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -949,7 +949,11 @@ json_val : NUMBER { $$ = $1; } | '"' litchars '"' { $$ = $2; rl($$, num(parser->lineno)); } | '[' ']' { $$ = vector(0, nil); } - | '[' json_vals ']' { $$ = $2; } + | '[' json_vals ']' { $$ = if3(vectorp($2), + $2, + rl(cons(vector_lit_s, + cons(nreverse($2), nil)), + $2)); } | '{' '}' { $$ = make_hash(nil, nil, t); } | '{' json_pairs '}' { $$ = if3(hashp($2), $2, |