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_EDGE_TOKEN_TYPES QUOTE_DELIMITERS.include?(token.text) else false end end