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

parent a170c1dd
......@@ -1786,7 +1786,7 @@ codegen(codegen_scope *s, node *tree, int val)
push();
}
codegen(s, tree->car->cdr, VAL);
if (len > 0) {
if (len > 0 || update) {
pop(); pop();
genop_1(s, OP_HASHCAT, cursp());
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