mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 56469: [Backport #12860]
* compile.c (setup_args): duplicate splatting array if more arguments present to obey left-to-right execution order. [ruby-core:77701] [Bug# 12860] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@57342 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
47f64f1ea1
commit
3032b62d54
4 changed files with 17 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Tue Jan 17 03:51:48 2017 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* compile.c (setup_args): duplicate splatting array if more
|
||||||
|
arguments present to obey left-to-right execution order.
|
||||||
|
[ruby-core:77701] [Bug# 12860]
|
||||||
|
|
||||||
Thu Nov 24 05:47:18 2016 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
|
Thu Nov 24 05:47:18 2016 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
|
||||||
|
|
||||||
* test/fileutils/test_fileutils.rb (TestFileUtils#setup): Use primary
|
* test/fileutils/test_fileutils.rb (TestFileUtils#setup): Use primary
|
||||||
|
|
|
@ -3615,7 +3615,7 @@ setup_args(rb_iseq_t *iseq, LINK_ANCHOR *args, NODE *argn, unsigned int *flag, s
|
||||||
switch (nd_type(argn)) {
|
switch (nd_type(argn)) {
|
||||||
case NODE_SPLAT: {
|
case NODE_SPLAT: {
|
||||||
COMPILE(args, "args (splat)", argn->nd_head);
|
COMPILE(args, "args (splat)", argn->nd_head);
|
||||||
ADD_INSN1(args, nd_line(argn), splatarray, Qfalse);
|
ADD_INSN1(args, nd_line(argn), splatarray, nsplat ? Qtrue : Qfalse);
|
||||||
argc = INT2FIX(1);
|
argc = INT2FIX(1);
|
||||||
nsplat++;
|
nsplat++;
|
||||||
*flag |= VM_CALL_ARGS_SPLAT;
|
*flag |= VM_CALL_ARGS_SPLAT;
|
||||||
|
@ -3629,7 +3629,7 @@ setup_args(rb_iseq_t *iseq, LINK_ANCHOR *args, NODE *argn, unsigned int *flag, s
|
||||||
INIT_ANCHOR(tmp);
|
INIT_ANCHOR(tmp);
|
||||||
COMPILE(tmp, "args (cat: splat)", argn->nd_body);
|
COMPILE(tmp, "args (cat: splat)", argn->nd_body);
|
||||||
if (nd_type(argn) == NODE_ARGSCAT) {
|
if (nd_type(argn) == NODE_ARGSCAT) {
|
||||||
ADD_INSN1(tmp, nd_line(argn), splatarray, Qfalse);
|
ADD_INSN1(tmp, nd_line(argn), splatarray, nsplat ? Qtrue : Qfalse);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
ADD_INSN1(tmp, nd_line(argn), newarray, INT2FIX(1));
|
ADD_INSN1(tmp, nd_line(argn), newarray, INT2FIX(1));
|
||||||
|
|
|
@ -90,4 +90,12 @@ class TestCall < Test::Unit::TestCase
|
||||||
h[:foo] = nil
|
h[:foo] = nil
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_call_splat_order
|
||||||
|
bug12860 = '[ruby-core:77701] [Bug# 12860]'
|
||||||
|
ary = [1, 2]
|
||||||
|
assert_equal([1, 2, 1], aaa(*ary, ary.shift), bug12860)
|
||||||
|
ary = [1, 2]
|
||||||
|
assert_equal([0, 1, 2, 1], aaa(0, *ary, ary.shift), bug12860)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#define RUBY_VERSION "2.3.3"
|
#define RUBY_VERSION "2.3.3"
|
||||||
#define RUBY_RELEASE_DATE "2017-01-17"
|
#define RUBY_RELEASE_DATE "2017-01-17"
|
||||||
#define RUBY_PATCHLEVEL 226
|
#define RUBY_PATCHLEVEL 227
|
||||||
|
|
||||||
#define RUBY_RELEASE_YEAR 2017
|
#define RUBY_RELEASE_YEAR 2017
|
||||||
#define RUBY_RELEASE_MONTH 1
|
#define RUBY_RELEASE_MONTH 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue