free_mutant/lib/mutant/matcher.rb
2012-08-01 18:34:03 +02:00

18 lines
247 B
Ruby

module Mutant
# Abstract matcher to find ASTs to mutate
class Matcher
include Enumerable
extend Abstract
# Enumerate subjects
#
# @api private
#
# @return [undefined]
#
abstract :each
private
end
end