class RuboCop::Cop::Lint::ImplicitStringConcatenation

def str_content(node)

def str_content(node)
  return unless node.respond_to?(:str_type?)
  if node.str_type?
    node.children[0]
  else
    node.children.map { |c| str_content(c) }.join
  end
end