Lines Matching refs:PendingComment
804 assert(PendingComment.empty() && "Only one comment per value!"); in comment()
805 PendingComment = Comment; in comment()
809 if (PendingComment.empty()) in flushComment()
813 while (!PendingComment.empty()) { in flushComment()
814 auto Pos = PendingComment.find("*/"); in flushComment()
816 OS << PendingComment; in flushComment()
817 PendingComment = ""; in flushComment()
819 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()
820 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()
854 assert(PendingComment.empty()); in arrayEnd()
873 assert(PendingComment.empty()); in objectEnd()
901 assert(PendingComment.empty()); in attributeEnd()