3cea008fcd
* Due historical reasons Env#warn also existed and in specs we actually passed an Env object where runtime passes Env::Boostrap objects. * Fix documentation for runtime type * Fix specs to pass in the runtime type * Remove now unused Env#warn
15 lines
285 B
Ruby
15 lines
285 B
Ruby
module Mutant
|
|
# Abstract matcher to find subjects to mutate
|
|
class Matcher
|
|
include Adamantium::Flat, AbstractType
|
|
|
|
# Call matcher
|
|
#
|
|
# @param [Env::Bootstrap] env
|
|
#
|
|
# @return [Enumerable<Subject>]
|
|
#
|
|
abstract_method :call
|
|
|
|
end # Matcher
|
|
end # Mutant
|