free_mutant/lib/mutant/mutator/define.rb
2012-08-14 12:40:27 +02:00

20 lines
276 B
Ruby

module Mutant
class Mutator
class Define < self
handle(Rubinius::AST::Define)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_body_mutations
end
end
end
end