Sha256: 08199d0876e1da7ac9acaa7f5d225f2f9913c0235952c3b19952f5cefe69c81b

Contents?: true

Size: 1.34 KB

Versions: 133

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

133 entries across 133 versions & 11 rubygems

Version Path
rubocop-1.74.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.73.2 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
siteimprove_api_client-1.0.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.73.1/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.73.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.73.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.72.2 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.72.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.72.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.71.2 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
tailscale_middleware-0.0.3 vendor/cache/ruby/3.4.0/gems/rubocop-1.71.1/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.71.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.71.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.70.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.69.2 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.69.1 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
rubocop-1.69.0 lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb
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