module RuboCop::Cop::MultilineExpressionIndentation

def valid_method_rhs_candidate?(candidate, node)

The []= operator and setters (a.b = c) are parsed as :send nodes.
def valid_method_rhs_candidate?(candidate, node)
  node.setter_method? &&
    valid_rhs_candidate?(candidate, node.last_argument)
end