26 lines
382 B
Ruby
26 lines
382 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
|