class RuboCop::Cop::Style::LineEndConcatenation

def standard_string_literal?(token)

def standard_string_literal?(token)
  case token.type
  when SIMPLE_STRING_TOKEN_TYPE
    true
  when COMPLEX_STRING_BEGIN_TOKEN, COMPLEX_STRING_END_TOKEN
    QUOTE_DELIMITERS.include?(token.text)
  else
    false
  end
end