class YARD::CodeObjects::ExtendedMethodObject
@see MethodObject
scope of another namespace.
Represents an instance method of a module that was mixed into the class
def initialize(obj) @del = obj end
-
obj
(MethodObject
) -- the instance method to treat as a mixed in
def initialize(obj) @del = obj end
def method_missing(sym, *args, &block) @del.__send__(sym, *args, &block) end
- See: MethodObject -
See: #initialize -
def method_missing(sym, *args, &block) @del.__send__(sym, *args, &block) end
def scope; :class end
-
(Symbol)
- always +:class+
def scope; :class end