mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* compile.c (iseq_compile_each): massign should return rvalue(s).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ad272173cd
commit
2c5463fe99
2 changed files with 18 additions and 9 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Aug 17 22:43:11 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* compile.c (iseq_compile_each): massign should return rvalue(s).
|
||||||
|
|
||||||
Fri Aug 17 22:10:19 2007 Koichi Sasada <ko1@atdot.net>
|
Fri Aug 17 22:10:19 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* test/ruby/test_basicinstructions.rb: fix old tests.
|
* test/ruby/test_basicinstructions.rb: fix old tests.
|
||||||
|
|
23
compile.c
23
compile.c
|
@ -3200,15 +3200,20 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
|
||||||
}
|
}
|
||||||
|
|
||||||
case NODE_MASGN:{
|
case NODE_MASGN:{
|
||||||
compile_massign(iseq, ret,
|
if (poped) {
|
||||||
node->nd_value, /* rhsn */
|
compile_massign(iseq, ret,
|
||||||
node->nd_args, /* splat */
|
node->nd_value, /* rhsn */
|
||||||
node->nd_head, /* lhsn */
|
node->nd_args, /* splat */
|
||||||
0);
|
node->nd_head, /* lhsn */
|
||||||
if (!poped) {
|
0);
|
||||||
ADD_INSN1(ret, nd_line(node), putobject, Qtrue);
|
}
|
||||||
}
|
else {
|
||||||
break;
|
COMPILE(ret, "masgn/value", node->nd_value);
|
||||||
|
ADD_INSN(ret, nd_line(node), dup);
|
||||||
|
compile_massign(iseq, ret, 0,
|
||||||
|
node->nd_args, node->nd_head, 0);
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case NODE_LASGN:{
|
case NODE_LASGN:{
|
||||||
|
|
Loading…
Reference in a new issue