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.rb, line 17
def bind_with_additional_info(to)
  bind_without_additional_info(to).tap do |bound|
    bound.name = name
    bound.owner = owner
    bound.receiver = to
  end
end