Lines Matching refs:PendingComment
806 assert(PendingComment.empty() && "Only one comment per value!"); in comment()
807 PendingComment = Comment; in comment()
811 if (PendingComment.empty()) in flushComment()
815 while (!PendingComment.empty()) { in flushComment()
816 auto Pos = PendingComment.find("*/"); in flushComment()
818 OS << PendingComment; in flushComment()
819 PendingComment = ""; in flushComment()
821 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()
822 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()
856 assert(PendingComment.empty()); in arrayEnd()
875 assert(PendingComment.empty()); in objectEnd()
903 assert(PendingComment.empty()); in attributeEnd()