class RuboCop::Cop::Layout::SpaceAroundOperators

def on_setter_method(node)

def on_setter_method(node)
  rhs = node.first_argument
  return unless rhs
  check_operator(:special_asgn, node.loc.operator, node.first_argument)
end