module T::Private::Methods::SingletonMethodHooks

Public Instance Methods

singleton_method_added(name) click to toggle source
Calls superclass method
# File lib/types/private/methods/_methods.rb, line 522
def singleton_method_added(name)
  super(name)
  ::T::Private::Methods._on_method_added(self, name, is_singleton_method: true)
end