# File lib/rr/injections/double_injection.rb, line 180
      def dispatch_method(subject, args, block)
        if @dispatch_method_delegates_to_dispatch_original_method
          dispatch_original_method(subject, args, block)
        else
          dispatch = MethodDispatches::MethodDispatch.new(self, subject, args, block)
          dispatch.call
        end
      end