Sirupsen (Simon Eskildsen)
- Login: Sirupsen
- Email: simon@sirupsen.com
- Registered on: 01/24/2014
- Last sign in: 01/24/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/25/2014
-
01:33 PM Ruby Bug #9448: Assignment with overridden []= returns return value of method rather than new value
- Thanks a lot for the quick fix!
01/24/2014
-
09:53 PM Ruby Bug #9448 (Closed): Assignment with overridden []= returns return value of method rather than new value
- When calling []= the assignment will return the return value of the []= method, rather than the value of the right-hand side, which is the behaviour in 2.1.0-p0, 2.0.0-p353 and 1.9.3-p484.
Example code:
class Animal ...