chloerei (Rei Huang)
- Login: chloerei
- Email: chloerei@gmail.com
- Registered on: 03/01/2012
- Last sign in: 11/25/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/18/2017
-
12:29 PM Ruby Bug #13227 (Closed): Crash when refine subclass method and call super
- Test script:
test.rb
~~~ ruby
class Parent
end
class Child < Parent
end
module FooBar
refine Parent do
def to_s
"Parent"
end
end
refine Child do
def to_s
super + " -> Child"
en...