class UnboundMethod

Attributes

name[RW]
owner[RW]

Public Instance Methods

bind_with_additional_info(to) click to toggle source
# File lib/backports/1.8.7/method/name.rb, line 19
def bind_with_additional_info(to)
  bound = bind_without_additional_info(to)
  bound.name = name
  bound.owner = owner
  bound.receiver = to
  bound
end