df6ccafeab
Needs more specs for sure. Especially edge cases.
14 lines
221 B
Ruby
14 lines
221 B
Ruby
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
|