Sha256: 08199d0876e1da7ac9acaa7f5d225f2f9913c0235952c3b19952f5cefe69c81b

Contents?: true

Size: 1.34 KB

Versions: 116

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module InternalAffairs
      # Checks for redundant `send_node` method dispatch node.
      #
      # @example
      #
      #   # bad
      #   node.send_node.method_name
      #
      #   # good
      #   node.method_name
      #
      #   # bad
      #   node.send_node.method?(:method_name)
      #
      #   # good
      #   node.method?(:method_name)
      #
      #   # bad
      #   node.send_node.receiver
      #
      #   # good
      #   node.receiver
      #
      class RedundantMethodDispatchNode < Base
        include RangeHelp
        extend AutoCorrector

        MSG = 'Remove the redundant `send_node`.'
        RESTRICT_ON_SEND = %i[method_name method? receiver].freeze

        # @!method dispatch_method(node)
        def_node_matcher :dispatch_method, <<~PATTERN
          {
            (send $(send _ :send_node) {:method_name :receiver})
            (send $(send _ :send_node) :method? _)
          }
        PATTERN

        def on_send(node)
          return unless (dispatch_node = dispatch_method(node))
          return unless (dot = dispatch_node.loc.dot)

          range = range_between(dot.begin_pos, dispatch_node.loc.selector.end_pos)

          add_offense(range) do |corrector|
            corrector.remove(range)
          end
        end
      end
    end
  end
end

Version data entries

116 entries across 116 versions & 8 rubygems

Version Path
rubocop-1.68.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.67.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.66.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.66.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.65.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.65.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.64.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.63.4 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.63.3 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.63.2 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.63.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.63.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
bison-0.1.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.62.1/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.62.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.62.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.61.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.2/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb