Lines Matching refs:PendingComment
805 assert(PendingComment.empty() && "Only one comment per value!"); in comment()
806 PendingComment = Comment; in comment()
810 if (PendingComment.empty()) in flushComment()
814 while (!PendingComment.empty()) { in flushComment()
815 auto Pos = PendingComment.find("*/"); in flushComment()
817 OS << PendingComment; in flushComment()
818 PendingComment = ""; in flushComment()
820 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()
821 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()
855 assert(PendingComment.empty()); in arrayEnd()
874 assert(PendingComment.empty()); in objectEnd()
902 assert(PendingComment.empty()); in attributeEnd()