Project

General

Profile

ActionsLike0

Bug #10016

closed

Destructuring block arguments with a Hashable last element

Added by brixen (Brian Shirai) over 10 years ago. Updated over 10 years ago.

Status:
Closed
Assignee:
-
Target version:
ruby -v:
ruby 2.2.0dev (2014-06-05 trunk 46353) [x86_64-darwin13]
[ruby-core:63593]

Description

The following code:

# destructure_bug.rb
def m
  x = Object.new
  def x.to_hash() {x: 9} end

  yield [1, 2, 3, x]
end

p m { |a, *b, c, **k| [a, b, c, k] }

gives:

$ ruby -v destructure_bug.rb
ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-darwin13.0]
[#<Object:0x007fc5fb212870>, [nil], 1, {:x=>9}]

$ ruby -v destructure_bug.rb
ruby 2.2.0dev (2014-06-05 trunk 46353) [x86_64-darwin13]
[#<Object:0x007f88c206c2a8>, [nil], 1, {:x=>9}]

I would expect: [1, [2], 3, {:x=>9}]

Is this a bug?

Added by nobu (Nobuyoshi Nakada) over 10 years ago

Revision 813ad489

vm_insnhelper.c: fix implicit splat keyword argument

  • vm_insnhelper.c (vm_callee_setup_keyword_arg): adjust VM stack
    pointer to get rid of overwriting splat arguments by arguments
    for to_hash conversion. [ruby-core:63593] [Bug #10016]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

Added by nagachika (Tomoyuki Chikanaga) over 10 years ago

Revision 6ff49bf8

merge revision(s) r46775: [Backport #10016]

    * vm_insnhelper.c (vm_callee_setup_keyword_arg): adjust VM stack
      pointer to get rid of overwriting splat arguments by arguments
      for `to_hash` conversion.  [ruby-core:63593] [Bug #10016]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@47138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

ActionsLike0

Also available in: Atom PDF