free_mutant/lib/mutant/matcher.rb

63 lines
1.1 KiB
Ruby
Raw Normal View History

# encoding: utf-8
module Mutant
# Abstract matcher to find subjects to mutate
class Matcher
2012-11-26 05:30:00 -05:00
include Adamantium::Flat, Enumerable, AbstractType
# Enumerate subjects
#
# @param [Object] input
#
# @return [self]
# if block given
#
# @return [Enumerable<Subject>]
2013-09-07 13:42:07 -04:00
# otherwise
#
# @api private
#
def self.each(cache, input, &block)
return to_enum(__method__, cache, input) unless block_given?
build(cache, input).each(&block)
self
end
# Default matcher build implementation
#
# @param [Cache] cache
# @param [Object] input
#
# @return [undefined]
#
# @api private
#
def self.build(*arguments)
new(*arguments)
end
2012-08-01 12:34:03 -04:00
# Enumerate subjects
#
# @api private
#
# @return [self]
# if block given
#
# @return [Enumerabe<Subject>]
# otherwise
#
abstract_method :each
# Return identification
#
# @return [String
#
# @api private
#
abstract_method :identification
2013-06-14 14:54:02 -04:00
end # Matcher
end # Mutant