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

Parameters:
  • 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

Other tags:
    See: MethodObject -
    See: #initialize -
def method_missing(sym, *args, &block) @del.__send__(sym, *args, &block) end

def scope; :class end

Returns:
  • (Symbol) - always +:class+
def scope; :class end