free_mutant/lib/mutant/mutator/node/cbase.rb
2013-07-23 21:58:10 -07:00

25 lines
388 B
Ruby

module Mutant
class Mutator
class Node
# Mutation emitter to handle cbase nodes
class Cbase < self
handle(:cbase)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
# noop, for now
end
end # Cbase
end # Node
end # Mutator
end # Mutant