free_mutant/lib/mutant/matcher.rb

20 lines
264 B
Ruby
Raw Normal View History

module Mutant
# Abstract matcher to find ASTs to mutate
class Matcher
include Enumerable
# Enumerate mutatees
#
# @api private
#
# @return [undefined]
#
def each
Mutant.not_implemented(self)
end
private
end
end