free_mutant/lib/mutant/mutator/node/block.rb
Markus Schirp 97a75dd062 Cleanup mutation generation
This is a reaction to the to_source rewrite

* Do not use 1.8 specific nodes anymore
* Do not generate AST nodes that would not be generatable from source
2013-01-09 20:43:06 +01:00

32 lines
597 B
Ruby

module Mutant
class Mutator
class Node
# Mutator on AST blocks
class Block < self
handle(Rubinius::AST::Block)
private
# Emit mutants
#
# @return [undefined]
#
# @api private
#
def dispatch
array = input.array
emit_attribute_mutations(:array) do |mutation|
array = mutation.array
# Do not generate empty bodies
if array.empty?
array << new_nil
end
mutation
end
end
end
end
end
end