Project

General

Profile

Actions

Bug #2468

closed

Array expansion inside case/when gives unexpected results

Added by romuloceccon (Rômulo Ceccon) over 14 years ago. Updated almost 13 years ago.

Status:
Closed
Assignee:
-
Target version:
ruby -v:
ruby 1.8.8dev (2009-12-07 revision 26034) [i386-mswin32_90]
[ruby-core:27116]

Description

=begin
Given the following script:

arr = [1, 2, 3]

case 2
when 1, 2, 3
puts "2 is in range #{arr.inspect}"
else
puts "2 is out of range #{arr.inspect}"
end

case 2
when *arr # this is the only thing different from the previous statement
puts "2 is in range #{arr.inspect}"
else
puts "2 is out of range #{arr.inspect}"
end

Ruby 1.8.8dev gives me the following output:

$ ruby -v
ruby 1.8.8dev (2009-12-07 revision 26034) [i386-mswin32_90]

$ ruby casebug.rb
2 is in range [1, 2, 3]
2 is out of range [1, 2, 3]

I'd expect the same results other versions give:

$ ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i386-mswin32_90]

$ ruby casebug.rb
2 is in range [1, 2, 3]
2 is in range [1, 2, 3]

$ ruby -v
ruby 1.9.1p129 (2009-05-12 revision 23412) [i386-mswin32]

$ ruby casebug.rb
2 is in range [1, 2, 3]
2 is in range [1, 2, 3]
=end


Related issues 3 (0 open3 closed)

Related to Ruby 1.8 - Bug #2555: "case n when *VALID" Broken in Ruby 1.8.8; affects Ruby on RailsClosed01/05/2010Actions
Related to Ruby master - Bug #2226: case 文の式が省略され when 節に配列展開があるときの挙動Closedmatz (Yukihiro Matsumoto)Actions
Has duplicate Ruby 1.8 - Bug #2551: case/when matches literal *[1,2,3] but not variable *aryClosed01/03/2010Actions
Actions #1

Updated by knu (Akinori MUSHA) about 14 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

=begin
This issue was solved with changeset r26589.
Romulo, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.

=end

Actions #2

Updated by marcandre (Marc-Andre Lafortune) about 14 years ago

  • Status changed from Closed to Open

=begin

=end

Actions #3

Updated by naruse (Yui NARUSE) about 14 years ago

  • Status changed from Open to Closed

=begin

I wish "ref [Bug #...]" would have been parsed just like "cf: [Bug #...]".
#... may change when the ticket moves from bug to backport or something.
So writing ref #... is correct.
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0