Class: Rubocop::Cop::Lint::UselessComparison

Inherits:
Cop
  • Object
show all
Defined in:
lib/rubocop/cop/lint/useless_comparison.rb

Overview

This cop checks for comparison of something with itself.

Examples:


x.top >= x.top

Constant Summary collapse

MSG =
'Comparison of something with itself detected.'
OPS =
%w(== === != < > <= >= <=>)

Constants inherited from Cop

Cop::OPERATOR_METHODS

Instance Attribute Summary

Attributes inherited from Cop

#config, #corrections, #offences, #processed_source

Instance Method Summary collapse

Methods inherited from Cop

#add_offence, all, #autocorrect?, #convention, #cop_config, cop_name, #cop_name, cop_type, #debug?, #ignore_node, inherited, #initialize, lint?, #message, non_rails, rails?, style?, #support_autocorrect?, #warning

Constructor Details

This class inherits a constructor from Rubocop::Cop::Cop

Instance Method Details

#on_send(node) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
# File 'lib/rubocop/cop/lint/useless_comparison.rb', line 16

def on_send(node)
  # lambda.() does not have a selector
  return unless node.loc.selector
  op = node.loc.selector.source

  if OPS.include?(op)
    receiver, _method, args = *node

    warning(node, :selector) if receiver == args
  end
end