Method: Hyperstack::Internal::State::Mapper.ignore_mutations

Defined in:
lib/hyperstack/internal/state/mapper.rb

.ignore_mutationsObject



105
106
107
108
109
110
111
# File 'lib/hyperstack/internal/state/mapper.rb', line 105

def ignore_mutations
  saved_ignore_mutations_flag = @ignore_mutations
  @ignore_mutations = true
  yield
ensure
  @ignore_mutations = saved_ignore_mutations_flag
end