Sha256: 421ba5493866bda71dd546a8d5143deca22edf6e00efbaff455a0ae4edefb6b4
Contents?: true
Size: 731 Bytes
Versions: 4
Compression:
Stored size: 731 Bytes
Contents
require 'private_attr/everywhere' module Reek module AST # # Locates references to the current object within a portion # of an abstract syntax tree. # class ReferenceCollector STOP_NODES = [:class, :module, :def, :defs] def initialize(ast) @ast = ast end def num_refs_to_self (explicit_self_calls + implicit_self_calls).size end private private_attr_reader :ast def explicit_self_calls [:self, :zsuper, :ivar, :ivasgn].flat_map do |node_type| ast.each_node(node_type, STOP_NODES) end end def implicit_self_calls ast.each_node(:send, STOP_NODES).reject(&:receiver) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems