[PATCH] D150840: [clang][NFC] Refactor emitSnippet()
Timm Bäder via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed May 17 22:33:06 PDT 2023
tbaeder created this revision.
tbaeder added a reviewer: aaron.ballman.
Herald added a project: All.
tbaeder requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Rename parameters and local variables and reorder things a bit to be closer to their first point of use.
This doesn't change anything else.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D150840
Files:
clang/lib/Frontend/TextDiagnostic.cpp
Index: clang/lib/Frontend/TextDiagnostic.cpp
===================================================================
--- clang/lib/Frontend/TextDiagnostic.cpp
+++ clang/lib/Frontend/TextDiagnostic.cpp
@@ -1298,16 +1298,12 @@
emitParseableFixits(Hints, SM);
}
-void TextDiagnostic::emitSnippet(StringRef line, unsigned MaxLineNoDisplayWidth,
+void TextDiagnostic::emitSnippet(StringRef SourceLine,
+ unsigned MaxLineNoDisplayWidth,
unsigned LineNo) {
- if (line.empty())
+ if (SourceLine.empty())
return;
- size_t i = 0;
-
- std::string to_print;
- bool print_reversed = false;
-
// Emit line number.
if (MaxLineNoDisplayWidth > 0) {
unsigned LineNoDisplayWidth = getNumDisplayWidth(LineNo);
@@ -1318,28 +1314,30 @@
OS << " | ";
}
- while (i<line.size()) {
- std::pair<SmallString<16>,bool> res
- = printableTextForNextCharacter(line, &i, DiagOpts->TabStop);
- bool was_printable = res.second;
+ bool PrintReversed = false;
+ std::string ToPrint;
+ size_t I = 0;
+ while (I < SourceLine.size()) {
+ auto [Str, WasPrintable] =
+ printableTextForNextCharacter(SourceLine, &I, DiagOpts->TabStop);
- if (DiagOpts->ShowColors && was_printable == print_reversed) {
- if (print_reversed)
+ if (DiagOpts->ShowColors && WasPrintable == PrintReversed) {
+ if (PrintReversed)
OS.reverseColor();
- OS << to_print;
- to_print.clear();
+ OS << ToPrint;
+ ToPrint.clear();
if (DiagOpts->ShowColors)
OS.resetColor();
}
- print_reversed = !was_printable;
- to_print += res.first.str();
+ PrintReversed = !WasPrintable;
+ ToPrint += Str;
}
- if (print_reversed && DiagOpts->ShowColors)
+ if (PrintReversed && DiagOpts->ShowColors)
OS.reverseColor();
- OS << to_print;
- if (print_reversed && DiagOpts->ShowColors)
+ OS << ToPrint;
+ if (PrintReversed && DiagOpts->ShowColors)
OS.resetColor();
OS << '\n';
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D150840.523270.patch
Type: text/x-patch
Size: 2023 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230518/ce636858/attachment.bin>
More information about the cfe-commits
mailing list