# File lib/yard/generators/method_listing_generator.rb, line 70
      def included_meths_by_module
        all_meths = current_object.included_meths(:scope => scope, :visibility => visibility)
        current_object.mixins(scope).each do |mixin|
          next if mixin.is_a?(CodeObjects::Proxy)
          meths = mixin.meths(meths_opts.merge(:scope => :instance)).select {|c| all_meths.include?(c) }
          remove_ignored_meths!(meths)
          next if meths.empty?
          yield(mixin, meths)
        end
      end