free_mutant/lib/mutant/matcher.rb

19 lines
247 B
Ruby
Raw Normal View History

module Mutant
# Abstract matcher to find ASTs to mutate
class Matcher
include Enumerable
extend Abstract
2012-08-01 18:34:03 +02:00
# Enumerate subjects
#
# @api private
#
# @return [undefined]
#
abstract :each
private
end
end