Sha256: da4cf6e7ab780f15f89bd565a4927553df7acf0f1f70d8fbe1f46fc5795f584f

Contents?: true

Size: 1.7 KB

Versions: 21

Compression:

Stored size: 1.7 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # Checks for expressions where there is a call to a predicate
      # method with at least one argument, where no parentheses are used around
      # the parameter list, and a boolean operator, && or ||, is used in the
      # last argument.
      #
      # The idea behind warning for these constructs is that the user might
      # be under the impression that the return value from the method call is
      # an operand of &&/||.
      #
      # @example
      #
      #   # bad
      #
      #   if day.is? :tuesday && month == :jan
      #     # ...
      #   end
      #
      # @example
      #
      #   # good
      #
      #   if day.is?(:tuesday) && month == :jan
      #     # ...
      #   end
      class RequireParentheses < Base
        include RangeHelp

        MSG = 'Use parentheses in the method call to avoid confusion about precedence.'

        def on_send(node)
          return if !node.arguments? || node.parenthesized?

          if node.first_argument.if_type? && node.first_argument.ternary?
            check_ternary(node.first_argument, node)
          elsif node.predicate_method?
            check_predicate(node.last_argument, node)
          end
        end
        alias on_csend on_send

        private

        def check_ternary(ternary, node)
          return unless ternary.condition.operator_keyword?

          range = range_between(node.source_range.begin_pos, ternary.condition.source_range.end_pos)

          add_offense(range)
        end

        def check_predicate(predicate, node)
          return unless predicate.operator_keyword?

          add_offense(node)
        end
      end
    end
  end
end

Version data entries

21 entries across 17 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/lint/require_parentheses.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/lint/require_parentheses.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/lint/require_parentheses.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/lint/require_parentheses.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/lint/require_parentheses.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/lint/require_parentheses.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/lint/require_parentheses.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/lint/require_parentheses.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.36.0 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.35.1 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.35.0 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.34.1 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.34.0 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.33.0 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.32.0 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.31.2 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.31.1 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.31.0 lib/rubocop/cop/lint/require_parentheses.rb
rubocop-1.30.1 lib/rubocop/cop/lint/require_parentheses.rb