Bug #8044
closed
Object#methods incompatible with prepend
Added by marcandre (Marc-Andre Lafortune) almost 12 years ago.
Updated almost 12 years ago.
Description
Object#methods incompatible with prepend:
o = Object.new
def o.foo; end
o.methods(false) # => [:foo], ok
o.singleton_class.send :prepend, Enumerable
o.methods(false) # => [], should be [:foo]
{public|protected|private}_methods have the same problem, since they all call class_instance_method_list
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r39744.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
class.c: from the origin class
Also available in: Atom
PDF
Like0
Like0Like0