Sha256: 3f9f93eecfd3c32234ca196e3bdd2de3a2e22f472c3901033382db06a12b8b26

Contents?: true

Size: 1.27 KB

Versions: 4

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module InternalAffairs
      # Checks that method names are checked using `method?` method.
      #
      # @example
      #   # bad
      #   node.method_name == :do_something
      #
      #   # good
      #   node.method?(:do_something)
      #
      class MethodNameEqual < Base
        include RangeHelp
        extend AutoCorrector

        MSG = 'Use `method?(%<method_name>s)` instead of ' \
              '`method_name == %<method_name>s`.'

        def_node_matcher :method_name?, <<~PATTERN
          (send
            $(send
              (...) :method_name) :==
            $...)
        PATTERN

        def on_send(node)
          method_name?(node) do |method_name_node, method_name_arg|
            message = format(MSG, method_name: method_name_arg.first.source)

            range = range(method_name_node, node)

            add_offense(range, message: message) do |corrector|
              corrector.replace(range, "method?(#{method_name_arg.first.source})")
            end
          end
        end

        private

        def range(method_name_node, node)
          range_between(
            method_name_node.loc.selector.begin_pos, node.source_range.end_pos
          )
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.90.0/lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-0.90.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-0.89.1 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-0.89.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb