free_mutant/lib/mutant/mutator/node/dsym.rb
2018-09-12 13:15:43 +00:00

25 lines
368 B
Ruby

# frozen_string_literal: true
module Mutant
class Mutator
class Node
# Dsym mutator
class Dsym < Generic
handle(:dsym)
private
# Emit mutations
#
# @return [undefined]
def dispatch
super()
emit_singletons
end
end # Dsym
end # Node
end # Mutator
end # Mutant