class RuboCop::Cop::Style::OperatorMethodCall
Checks for redundant dot before operator method call. The target operator methods are `|`, `^`, `&`, `<=>`, `==`, `===`, `=~`, `>`, `>=`, `<`, `<=`, `<<`, `>>`, `+`, `-`, `*`, `/`, `%`, `**`, `~`, `!`, `!=`, and `!~`.
@example
# bad foo.+ bar foo.& bar # good foo + bar foo & bar
Constants
- MSG
- RESTRICT_ON_SEND
Public Instance Methods
on_send(node)
click to toggle source
# File lib/rubocop/cop/style/operator_method_call.rb, line 26 def on_send(node) return unless (dot = node.loc.dot) return if node.receiver.const_type? _lhs, _op, rhs = *node return if rhs.nil? || rhs.children.first add_offense(dot) do |corrector| wrap_in_parentheses_if_chained(corrector, node) corrector.replace(dot, ' ') end end
Private Instance Methods
wrap_in_parentheses_if_chained(corrector, node)
click to toggle source
# File lib/rubocop/cop/style/operator_method_call.rb, line 41 def wrap_in_parentheses_if_chained(corrector, node) return unless node.parent&.call_type? operator = node.loc.selector ParenthesesCorrector.correct(corrector, node) corrector.insert_after(operator, ' ') corrector.wrap(node, '(', ')') end