475512146f
* Add emit_nil to other nodes so that they can be replaced with nil, effectively removing them from the code.
35 lines
608 B
Ruby
35 lines
608 B
Ruby
# encoding: utf-8
|
|
|
|
module Mutant
|
|
class Mutator
|
|
class Node
|
|
# Emitter for mutations on 19 blocks
|
|
class Block < self
|
|
|
|
handle(:block)
|
|
|
|
children :send, :arguments, :body
|
|
|
|
private
|
|
|
|
# Emit mutants
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
def dispatch
|
|
emit(send)
|
|
emit_arguments_mutations
|
|
if body
|
|
emit_body_mutations
|
|
end
|
|
emit_body(nil)
|
|
emit_body(RAISE)
|
|
emit_nil
|
|
end
|
|
|
|
end # Block
|
|
end # Node
|
|
end # Mutator
|
|
end # Mutant
|