free_mutant/lib/mutant/matcher.rb

15 lines
221 B
Ruby
Raw Normal View History

module Mutant
# Abstract filter for rubinius asts.
class Matcher
include Enumerable
# Return each matched node
#
# @api private
#
def each
Mutant.not_implemented(self)
end
end
end