free_mutant/lib/mutant/mutator/node/arguments.rb
2012-12-06 22:30:57 +01:00

24 lines
381 B
Ruby

module Mutant
class Mutator
class Node
# Mutator for arguments
class Arguments < self
handle(Rubinius::AST::ActualArguments)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_attribute_mutations(:array)
end
end
end
end
end