class RSpec::Mocks::ConstantMutator::BaseMutator

@private
Contains common functionality used by all of the constant mutators.

def idempotently_reset

def idempotently_reset
  reset unless @reset_performed
  @reset_performed = true
end

def initialize(full_constant_name, mutated_value, transfer_nested_constants)

def initialize(full_constant_name, mutated_value, transfer_nested_constants)
  @full_constant_name        = normalize_const_name(full_constant_name)
  @mutated_value             = mutated_value
  @transfer_nested_constants = transfer_nested_constants
  @context_parts             = @full_constant_name.split('::')
  @const_name                = @context_parts.pop
  @reset_performed           = false
end

def to_constant

def to_constant
  const = Constant.new(full_constant_name)
  const.original_value = original_value
  const
end