Need to support multiple `**` splats in argument list; fix #4106

parent a170c1dd
...@@ -1786,7 +1786,7 @@ codegen(codegen_scope *s, node *tree, int val) ...@@ -1786,7 +1786,7 @@ codegen(codegen_scope *s, node *tree, int val)
push(); push();
} }
codegen(s, tree->car->cdr, VAL); codegen(s, tree->car->cdr, VAL);
if (len > 0) { if (len > 0 || update) {
pop(); pop(); pop(); pop();
genop_1(s, OP_HASHCAT, cursp()); genop_1(s, OP_HASHCAT, cursp());
push(); push();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment