class Mutest::Mutator::Node::Generic

Generic mutator

Private Instance Methods

dispatch() click to toggle source

Emit mutations

@return [undefined]

# File lib/mutest/mutator/node/generic.rb, line 72
def dispatch
  children.each_with_index do |child, index|
    mutate_child(index) if child.instance_of?(::Parser::AST::Node)
  end
end