free_mutant/lib/mutant/mutator/node/arguments.rb

25 lines
381 B
Ruby
Raw Normal View History

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
2012-12-06 16:30:57 -05:00
emit_attribute_mutations(:array)
end
end
end
end
end