Sha256: 543e84da28fcc2e349d6e9faab61899616a8ba473afb5e08e088d453f19a8c61

Contents?: true

Size: 940 Bytes

Versions: 2

Compression:

Stored size: 940 Bytes

Contents

# encoding: utf-8

module Rubocop
  module Cop
    # Common functionality for checking assignment nodes.
    module CheckAssignment
      TYPES = Util::ASGN_NODES - [:casgn, :op_asgn]
      TYPES.each do |type|
        define_method("on_#{type}") do |node|
          _lhs, rhs = *node
          check_assignment(node, rhs)
        end
      end

      def on_casgn(node)
        _scope, _lhs, rhs = *node
        check_assignment(node, rhs)
      end

      def on_op_asgn(node)
        _lhs, _op, rhs = *node
        check_assignment(node, rhs)
      end

      def on_send(node)
        _receiver, method_name, *_, rhs = *node

        # we only want to indent relative to the receiver
        # when the method called looks like a setter
        return unless method_name.to_s.end_with?('=')

        # This will match if, case, begin, blocks, etc.
        check_assignment(node, rhs) if rhs.is_a?(AST::Node)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-0.22.0 lib/rubocop/cop/mixin/check_assignment.rb
rubocop-0.21.0 lib/rubocop/cop/mixin/check_assignment.rb