mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* insns.def (concatarray, splatarray): use to_a instead of
to_splat. * insnhelper.ci (caller_setup_args): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14063 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6fafbfd63e
commit
2bbffcd6a4
8 changed files with 14 additions and 48 deletions
|
|
@ -113,8 +113,8 @@ assert_equal '1', 'a = [obj = Object.new]; a.size'
|
|||
assert_equal 'true', 'a = [obj = Object.new]; a[0] == obj'
|
||||
assert_equal '5', 'a = [1,2,3]; a[1] = 5; a[1]'
|
||||
assert_equal 'bar', '[*:foo];:bar'
|
||||
assert_equal '[1, 2]', 'def nil.to_splat; [2]; end; [1, *nil]'
|
||||
assert_equal '[1, 2]', 'def nil.to_splat; [1, 2]; end; [*nil]'
|
||||
assert_equal '[1, 2]', 'def nil.to_a; [2]; end; [1, *nil]'
|
||||
assert_equal '[1, 2]', 'def nil.to_a; [1, 2]; end; [*nil]'
|
||||
assert_equal '[0, 1, {2=>3}]', '[0, *[1], 2=>3]', "[ruby-dev:31592]"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue