NODE_SPLAT to pass VAL/NOVAL; fix #3532

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-04-03 12:02:39 +09:00
parent f5632f2f12
commit d35fcf1ea2
+1 -1
View File
@@ -1681,7 +1681,7 @@ codegen(codegen_scope *s, node *tree, int val)
break;
case NODE_SPLAT:
codegen(s, tree, VAL);
codegen(s, tree, val);
break;
case NODE_ASGN: