free_mutant/lib/mutant/mutator/node/dstr.rb
Markus Schirp 017ccc1044 Add expression => self mutation
Also reorganizes parts of meta to align filenames to node name better.

Closes #191
2014-06-05 17:48:39 +00:00

28 lines
397 B
Ruby

# 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_singletons
end
end # Dstr
end # Node
end # Mutator
end # Mutant