free_mutant/lib/mutant/mutator/node/arguments.rb
2013-06-14 21:11:54 +02:00

23 lines
357 B
Ruby

module Mutant
class Mutator
class Node
class Arguments < self
handle(:args)
private
# Perform dispatch
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_children_mutations
end
end # Arguments
end # Node
end # Mutator
end # Mutant