475512146f
* Add emit_nil to other nodes so that they can be replaced with nil, effectively removing them from the code.
29 lines
474 B
Ruby
29 lines
474 B
Ruby
# encoding: utf-8
|
|
|
|
module Mutant
|
|
class Mutator
|
|
class Node
|
|
|
|
# Mutation emitter to handle multiple assignment nodes
|
|
class MultipleAssignment < self
|
|
|
|
handle(:masgn)
|
|
|
|
children :left, :right
|
|
|
|
private
|
|
|
|
# Perform dispatch
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
def dispatch
|
|
emit_nil
|
|
end
|
|
|
|
end # MultipleAssignment
|
|
end # Node
|
|
end # Mutator
|
|
end # Mutant
|