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

26 lines
388 B
Ruby
Raw Normal View History

2013-07-24 00:58:10 -04:00
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