[ruby-core:68861] [Ruby trunk - Bug #11064] [Open] #singleton_methods for objects with special singleton_class returns an empty array

From: mail@...
Date: 2015-04-12 20:35:11 UTC
List: ruby-core #68861
Issue #11064 has been reported by Jan Lelis.

----------------------------------------
Bug #11064: #singleton_methods for objects with special singleton_class returns an empty array
https://bugs.ruby-lang.org/issues/11064

* Author: Jan Lelis
* Status: Open
* Priority: Normal
* Assignee: 
* ruby -v: ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-linux]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
~~~
def nil.bla
  42  
end

# works
nil.bla #=> 42
nil.singleton_method(:bla) #=> #<Method: NilClass#bla>
NilClass.instance_methods.include? :bla #=> true

# does not work
nil.singleton_methods #=> []
~~~




-- 
https://bugs.ruby-lang.org/

In This Thread

Prev Next