40d5230c68
* Sorry for not splitting up into smaller commit
25 lines
415 B
Ruby
25 lines
415 B
Ruby
module Mutant
|
|
class Mutator
|
|
class Node
|
|
class LocalVariableAssignment < self
|
|
|
|
handle(Rubinius::AST::LocalVariableAssignment)
|
|
|
|
private
|
|
|
|
# Emit mutants
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
def dispatch
|
|
emit_attribute_mutations(:name)
|
|
emit_attribute_mutations(:value)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|