free_mutant/lib/mutant/mutator/node/send.rb
2013-06-14 21:12:09 +02:00

24 lines
348 B
Ruby

module Mutant
class Mutator
class Node
# Namespace for send mutators
class Send < self
handle(:send)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
end
end # Send
end # Node
end # Mutator
end # Mutant