You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This reverts commit e27202d.
Unfortunately, 1.8 and 1.9 blocks have different behavior:
block = Proc.new { |x| puts x.inspect }
block.call(1, 2)
On 1.8, x gets [1, 2]; on 1.9, x gets 1. So this VariableArgsBlockCaller is more important than I thought to maintain 1.8 compatibility.
0 commit comments