================ @@ -763,6 +773,53 @@ void FormatTokenLexer::handleCSharpVerbatimAndInterpolatedStrings() { resetLexer(SourceMgr.getFileOffset(Lex->getSourceLocation(Offset + 1))); } +void FormatTokenLexer::handleTableGenMultilineString() { + FormatToken *MultiLineString = Tokens.back(); + if (MultiLineString->isNot(TT_TableGenMultiLineString)) + return; + + bool PrevIsRBrace = false; + const char *FirstBreak = nullptr; + const char *LastBreak = nullptr; + const char *Begin = MultiLineString->TokenText.begin(); + // Skip until }], the closer of multi line string found. + for (const char *Current = Begin, *End = Lex->getBuffer().end(); ---------------- HazardyKnusperkeks wrote:
So you have a `const char` range? How about just using `find("}]")`? https://github.com/llvm/llvm-project/pull/78032 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits