class RuboCop::Cop::Layout::SpaceAroundOperators

def on_send(node)

def on_send(node)
  if node.setter_method?
    on_special_asgn(node)
  elsif regular_operator?(node)
    check_operator(node.loc.selector, node.first_argument.source_range)
  end
end