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

25 lines
348 B
Ruby
Raw Normal View History

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