free_mutant/lib/mutant/mutator/node/dstr.rb

29 lines
390 B
Ruby
Raw Normal View History

2013-09-08 00:28:37 -04:00
# encoding: utf-8
module Mutant
class Mutator
class Node
# Dstr mutator
class Dstr < Generic
handle(:dstr)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
super
emit_nil
end
2013-09-08 00:28:37 -04:00
end # Dstr
end # Node
end # Mutator
end # Mutant