module RuboCop::Cop::Metrics::Utils::RepeatedAttributeDiscount

def calculate_node(node)

def calculate_node(node)
  update_repeated_attribute(node) if discount_repeated_attributes?
  super
end

def discount_repeated_attribute?(send_node)

def discount_repeated_attribute?(send_node)
  return false unless attribute_call?(send_node)
  repeated = true
  find_attributes(send_node) do |hash, lookup|
    return false if hash.nil?
    repeated = false
    hash[lookup] = {}
  end
  repeated
end

def discount_repeated_attributes?

def discount_repeated_attributes?
  defined?(@known_attributes)
end

def evaluate_branch_nodes(node)

def evaluate_branch_nodes(node)
  return if discount_repeated_attributes? && discount_repeated_attribute?(node)
  super
end

def find_attributes(node, &block)

then `nil` is yielded
If the node is not a series of `(c)send` calls with no arguments,
associated key (method_name)
If at any step the subdirectory does not exist, it is yielded with the
Returns the "known_attributes" for the `node` by walking the receiver tree
def find_attributes(node, &block)
  if attribute_call?(node)
    calls = find_attributes(node.receiver, &block)
    value = node.method_name
  elsif root_node?(node)
    calls = @known_attributes
    value = node
  else
    return yield nil
  end
  calls.fetch(value) { yield [calls, value] }
end

def initialize(node, discount_repeated_attributes: false)

Plug into the calculator
def initialize(node, discount_repeated_attributes: false)
  super(node)
  return unless discount_repeated_attributes
  self_attributes = {} # Share hash for `(send nil? :foo)` and `(send (self) :foo)`
  @known_attributes = { s(:self) => self_attributes, nil => self_attributes }
  # example after running `obj = foo.bar; obj.baz.qux`
  # { nil => {foo: {bar: {}}},
  #   s(self) => same hash ^,
  #   s(:lvar, :obj) => {baz: {qux: {}}}
  # }
end

def setter_to_getter(node)

or `nil` if it is not a setter.
@returns `[receiver, method | nil]` for the given setter `node`
def setter_to_getter(node)
  if (type = VAR_SETTER_TO_GETTER[node.type])
    # (lvasgn :my_var (int 42)) => [(lvar my_var), nil]
    [s(type, node.children.first), nil]
  elsif node.shorthand_asgn? # (or-asgn (send _receiver :foo) _value)
    # (or-asgn (send _receiver :foo) _value) => [_receiver, :foo]
    node.children.first.children
  elsif node.respond_to?(:setter_method?) && node.setter_method?
    # (send _receiver :foo= (int 42) ) => [_receiver, :foo]
    method_name = node.method_name[0...-1].to_sym
    [node.receiver, method_name]
  end
end

def update_repeated_attribute(node)

def update_repeated_attribute(node)
  return unless (receiver, method = setter_to_getter(node))
  calls = find_attributes(receiver) { return }
  if method # e.g. `self.foo = 42`
    calls.delete(method)
  else      # e.g. `var = 42`
    calls.clear
  end
end