Sha256: 32ae733e8750adea17f90a416ed4e8c96ba4c2abdc677d7e941f0a29e29f25a8

Contents?: true

Size: 1.85 KB

Versions: 20

Compression:

Stored size: 1.85 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Performance
      # Identifies uses of `Range#include?` and `Range#member?`, which iterates over each
      # item in a `Range` to see if a specified item is there. In contrast,
      # `Range#cover?` simply compares the target item with the beginning and
      # end points of the `Range`. In a great majority of cases, this is what
      # is wanted.
      #
      # @safety
      #   This cop is unsafe because `Range#include?` (or `Range#member?`) and `Range#cover?`
      #   are not equivalent behavior.
      #
      # @example
      #   # bad
      #   ('a'..'z').include?('b') # => true
      #   ('a'..'z').member?('b')  # => true
      #
      #   # good
      #   ('a'..'z').cover?('b') # => true
      #
      #   # Example of a case where `Range#cover?` may not provide
      #   # the desired result:
      #
      #   ('a'..'z').cover?('yellow') # => true
      class RangeInclude < Base
        extend AutoCorrector

        MSG = 'Use `Range#cover?` instead of `Range#%<bad_method>s`.'
        RESTRICT_ON_SEND = %i[include? member?].freeze

        # TODO: If we traced out assignments of variables to their uses, we
        # might pick up on a few more instances of this issue
        # Right now, we only detect direct calls on a Range literal
        # (We don't even catch it if the Range is in double parens)

        def_node_matcher :range_include, <<~PATTERN
          (send {irange erange (begin {irange erange})} ${:include? :member?} ...)
        PATTERN

        def on_send(node)
          range_include(node) do |bad_method|
            message = format(MSG, bad_method: bad_method)

            add_offense(node.loc.selector, message: message) do |corrector|
              corrector.replace(node.loc.selector, 'cover?')
            end
          end
        end
      end
    end
  end
end

Version data entries

20 entries across 18 versions & 4 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-performance-1.14.3/lib/rubocop/cop/performance/range_include.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-performance-1.14.3/lib/rubocop/cop/performance/range_include.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-performance-1.14.3/lib/rubocop/cop/performance/range_include.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-performance-1.18.0/lib/rubocop/cop/performance/range_include.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-performance-1.14.3/lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.19.0 lib/rubocop/cop/performance/range_include.rb
mlh-rubocop-config-1.0.2 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.18.0/lib/rubocop/cop/performance/range_include.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-performance-1.14.3/lib/rubocop/cop/performance/range_include.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-performance-1.18.0/lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.18.0 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.17.1 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.17.0 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.16.0 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.15.2 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.15.1 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.15.0 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.14.3 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.14.2 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.14.1 lib/rubocop/cop/performance/range_include.rb
rubocop-performance-1.14.0 lib/rubocop/cop/performance/range_include.rb