Lines Matching refs:PendingComment
787 assert(PendingComment.empty() && "Only one comment per value!"); in comment()
788 PendingComment = Comment; in comment()
792 if (PendingComment.empty()) in flushComment()
796 while (!PendingComment.empty()) { in flushComment()
797 auto Pos = PendingComment.find("*/"); in flushComment()
799 OS << PendingComment; in flushComment()
800 PendingComment = ""; in flushComment()
802 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()
803 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()
837 assert(PendingComment.empty()); in arrayEnd()
856 assert(PendingComment.empty()); in objectEnd()
884 assert(PendingComment.empty()); in attributeEnd()