Lines Matching refs:PendingComment
808 assert(PendingComment.empty() && "Only one comment per value!"); in comment()
809 PendingComment = Comment; in comment()
813 if (PendingComment.empty()) in flushComment()
817 while (!PendingComment.empty()) { in flushComment()
818 auto Pos = PendingComment.find("*/"); in flushComment()
820 OS << PendingComment; in flushComment()
821 PendingComment = ""; in flushComment()
823 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()
824 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()
858 assert(PendingComment.empty()); in arrayEnd()
877 assert(PendingComment.empty()); in objectEnd()
905 assert(PendingComment.empty()); in attributeEnd()