class Unparser::Comments

def unshift_documents(comments)

def unshift_documents(comments)
  doc_comments, other_comments = comments.partition(&:document?)
  doc_comments.reverse_each { |comment| @comments.unshift(comment) }
  other_comments
end