# File lib/backports/2.2.0/method/super_method.rb, line 5
    def super_method
      singleton_klass = class << receiver; self; end
      call_chain = singleton_klass.ancestors
      # find current position in call chain:
      skip = call_chain.find_index{|c| c == owner} or return
      call_chain = call_chain.drop(skip + 1)
      # find next in chain with a definition:
      next_index = call_chain.find_index{|c| c.method_defined? name}
      next_index && call_chain[next_index].instance_method(name).bind(receiver)
    end