a19f3b1691
* I do not use 1.9.3 * Also keeping them in each file increases mental overhead (true it *can* be autoamted) * None of the files encodes NON ASCII chars. * I do not expect it makes any difference, since nobody programmatically will consume strings generated by mutant under the assumption they are UTF-8 encoded. * 1.9.3 Users have to deal with the encoding fuckup under ruby anyways.
72 lines
1.3 KiB
Ruby
72 lines
1.3 KiB
Ruby
module Mutant
|
|
class Matcher
|
|
class Method
|
|
|
|
# Visitor to find last match inside AST
|
|
class Finder
|
|
|
|
# Run finder
|
|
#
|
|
# @param [Parser::AST::Node]
|
|
#
|
|
# @return [Parser::AST::Node]
|
|
# if found
|
|
#
|
|
# @return [nil]
|
|
# otherwise
|
|
#
|
|
# @api private
|
|
#
|
|
#
|
|
def self.run(root, &predicate)
|
|
new(root, predicate).match
|
|
end
|
|
|
|
private_class_method :new
|
|
|
|
# Return match
|
|
#
|
|
# @return [Parser::AST::Node]
|
|
#
|
|
# @api private
|
|
#
|
|
attr_reader :match
|
|
|
|
private
|
|
|
|
# Initialize object
|
|
#
|
|
# @param [Parer::AST::Node]
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
#
|
|
def initialize(root, predicate)
|
|
@root, @predicate = root, predicate
|
|
visit(root)
|
|
end
|
|
|
|
# Visit node
|
|
#
|
|
# @param [Parser::AST::Node] node
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
def visit(node)
|
|
if @predicate.call(node)
|
|
@match = node
|
|
end
|
|
|
|
node.children.each do |child|
|
|
visit(child) if child.kind_of?(Parser::AST::Node)
|
|
end
|
|
end
|
|
|
|
end # Finder
|
|
end # Method
|
|
end # Matcher
|
|
end # Mutant
|