class Mutest::Mutator::Node::Super

Mutator for super with parentheses

Private Instance Methods

dispatch() click to toggle source

Emit mutations

@return [undefined]

# File lib/mutest/mutator/node/super.rb, line 13
def dispatch
  emit_singletons
  emit(N_EMPTY_SUPER)
  children.each_index do |index|
    mutate_child(index)
    delete_child(index)
  end
end