class RuboCop::Cop::Style::LineEndConcatenation

def autocorrect(operator_range)

def autocorrect(operator_range)
  # Include any trailing whitespace so we don't create a syntax error.
  operator_range = range_with_surrounding_space(operator_range,
                                                :right,
                                                !:with_newline)
  ->(corrector) { corrector.replace(operator_range, '\\') }
end