# File lib/rr/injections/double_injection.rb, line 112
      def bind
        if subject_has_method_defined?(method_name)
          bind_method_with_alias
        else
          Injections::MethodMissingInjection.find_or_create(subject_class)
          Injections::SingletonMethodAddedInjection.find_or_create(subject_class)
          bind_method_that_self_destructs_and_delegates_to_method_missing
        end
        self
      end