free_mutant/lib/mutant/matcher/method/instance.rb
Markus Schirp 019d8813d9 Detect memoizable instead of adamantium
* At the time the detector was wrote adamantium shipped memoization. But
  that feature was moved to the memoizable gem.

* Because mutant now uses memoizable API an explicit dependency was
  added to gemspec.
2014-03-28 15:30:45 +00:00

84 lines
2 KiB
Ruby

# encoding: utf-8
module Mutant
class Matcher
class Method
# Matcher for instance methods
class Instance < self
SUBJECT_CLASS = Subject::Method::Instance
# Dispatching builder, detects memoizable case
#
# @param [Cache] cache
# @param [Class, Module] scope
# @param [UnboundMethod] method
#
# @return [Matcher::Method::Instance]
#
# @api private
#
def self.build(cache, scope, method)
name = method.name
if scope.ancestors.include?(::Memoizable) and scope.memoized?(name)
return Memoized.new(cache, scope, method)
end
super
end
# Return identification
#
# @return [String]
#
# @api private
#
def identification
"#{scope.name}##{method_name}"
end
memoize :identification
NAME_INDEX = 0
private
# Check if node is matched
#
# @param [Parser::AST::Node] node
#
# @return [true]
# if node matches method
#
# @return [false]
# otherwise
#
# @api private
#
def match?(node)
location = node.location || return
expression = location.expression || return
expression.line == source_line &&
node.type == :def &&
node.children[NAME_INDEX] == method_name
end
# Matcher for memoized instance methods
class Memoized < self
SUBJECT_CLASS = Subject::Method::Instance::Memoized
private
# Return source location
#
# @return [Array]
#
# @api private
#
def source_location
scope.unmemoized_instance_method(method.name).source_location
end
end # Memoized
end # Instance
end # Method
end # Matcher
end # Mutant