# File lib/yard/generators/method_listing_generator.rb, line 49
      def inherited_meths_by_class
        all_meths = current_object.inherited_meths(:scope => scope, :visibility => visibility)
        current_object.inheritance_tree[1..-1].each do |superclass|
          next if superclass.is_a?(CodeObjects::Proxy)
          meths = superclass.meths(meths_opts).select {|c| all_meths.include?(c) }
          remove_ignored_meths!(meths)
          next if meths.empty?
          yield(superclass, meths)
        end
      end