15 lines
221 B
Ruby
15 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
|