This project is closed and read-only.
Actions
Bug #6239
closedsuper Does Not Pass Modified Rest Args When Originally Empty
Bug #6239:
super Does Not Pass Modified Rest Args When Originally Empty
Description
Given the following code:
1.8.7-p358> B.new.a("bar")
=> ["bar", "foo"]
1.8.7-p358> B.new.a
=> []
But:
1.9.2-p290> B.new.a("bar")
=> ["bar", "foo"]
1.9.2-p290> B.new.a
=> ["foo"]
The 1.9.2 behaviour is more predictable than 1.8.7, should this be backported or is this expected behaviour?
Actions