# File lib/rr/injections/double_injection.rb, line 141
      def bind_method
        id = BoundObjects.size
        BoundObjects[id] = subject_class

        subject_class.class_eval("def \#{method_name}(*args, &block)\narguments = MethodArguments.new(args, block)\nobj = ::RR::Injections::DoubleInjection::BoundObjects[\#{id}]\n::RR::Injections::DoubleInjection.dispatch_method(self, obj, :\#{method_name}, arguments.arguments, arguments.block)\nend\n", __FILE__, __LINE__ + 1)
        self
      end