adamluzsi (Adam Luzsi)
- Login: adamluzsi
- Registered on: 03/25/2016
- Last sign in: 03/25/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/26/2016
-
01:42 AM Ruby Bug #12216: Class inherited Singleton method exclude argument from protected method accessing
- Nobuyoshi Nakada wrote:
> Protected methods can be called from a same class instance.
So far I though, A and B is a different class instance, just they are in inheritance relationship.
But I see now,
class instance != object ins... -
01:22 AM Ruby Bug #12216: Class inherited Singleton method exclude argument from protected method accessing
- Nobuyoshi Nakada wrote:
> Expected behavior.
> ...
Thank you very much!
My mistake, I mixed up with the private scope.
I'm terrible sorry for this.
Best regards,
Adam L.
03/25/2016
-
12:20 AM Ruby Bug #12216 (Rejected): Class inherited Singleton method exclude argument from protected method accessing
- Dear Ruby Lang developers.
I would like to ask about why the following code can work?
Or is it a valid scenario and "as expected" behavior to ignore public call on a protected method.
Thank you guys for the brilliant!
```ru...