[PATCH] D132719: [clang-format] Rework removeBraces() in Format.cpp
Owen Pan via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Aug 27 14:10:32 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG44a06b51b2ce: [clang-format] Rework removeBraces() in Format.cpp (authored by owenpan).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132719/new/
https://reviews.llvm.org/D132719
Files:
clang/lib/Format/Format.cpp
clang/unittests/Format/FormatTest.cpp
Index: clang/unittests/Format/FormatTest.cpp
===================================================================
--- clang/unittests/Format/FormatTest.cpp
+++ clang/unittests/Format/FormatTest.cpp
@@ -26005,6 +26005,14 @@
"}",
Style);
+ verifyFormat("if (a) // comment\n"
+ " b = 1;",
+ "if (a) // comment\n"
+ "{\n"
+ " b = 1;\n"
+ "}",
+ Style);
+
Style.ColumnLimit = 20;
verifyFormat("int ab = [](int i) {\n"
Index: clang/lib/Format/Format.cpp
===================================================================
--- clang/lib/Format/Format.cpp
+++ clang/lib/Format/Format.cpp
@@ -1902,31 +1902,30 @@
void removeBraces(SmallVectorImpl<AnnotatedLine *> &Lines,
tooling::Replacements &Result) {
const auto &SourceMgr = Env.getSourceManager();
- bool EndsWithComment = false;
- for (AnnotatedLine *Line : Lines) {
+ const auto End = Lines.end();
+ for (auto I = Lines.begin(); I != End; ++I) {
+ const auto Line = *I;
removeBraces(Line->Children, Result);
- if (Line->Affected) {
- for (FormatToken *Token = Line->First; Token && !Token->Finalized;
- Token = Token->Next) {
- if (!Token->Optional)
- continue;
- assert(Token->isOneOf(tok::l_brace, tok::r_brace));
- assert(Token->Previous || Token == Line->First);
- const FormatToken *Next = Token->Next;
- assert(Next || Token == Line->Last);
- const auto Start =
- (!Token->Previous && EndsWithComment) ||
- (Next && !(Next->isOneOf(tok::kw_else, tok::comment) &&
- Next->NewlinesBefore > 0))
- ? Token->Tok.getLocation()
- : Token->WhitespaceRange.getBegin();
- const auto Range =
- CharSourceRange::getCharRange(Start, Token->Tok.getEndLoc());
- cantFail(Result.add(tooling::Replacement(SourceMgr, Range, "")));
- }
+ if (!Line->Affected)
+ continue;
+ const auto NextLine = I + 1 == End ? nullptr : I[1];
+ for (auto Token = Line->First; Token && !Token->Finalized;
+ Token = Token->Next) {
+ if (!Token->Optional)
+ continue;
+ assert(Token->isOneOf(tok::l_brace, tok::r_brace));
+ auto Next = Token->Next;
+ assert(Next || Token == Line->Last);
+ if (!Next && NextLine)
+ Next = NextLine->First;
+ const auto Start =
+ Next && Next->NewlinesBefore == 0 && Next->isNot(tok::eof)
+ ? Token->Tok.getLocation()
+ : Token->WhitespaceRange.getBegin();
+ const auto Range =
+ CharSourceRange::getCharRange(Start, Token->Tok.getEndLoc());
+ cantFail(Result.add(tooling::Replacement(SourceMgr, Range, "")));
}
- assert(Line->Last);
- EndsWithComment = Line->Last->is(tok::comment);
}
}
};
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132719.456151.patch
Type: text/x-patch
Size: 3030 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220827/b462999e/attachment-0001.bin>
More information about the cfe-commits
mailing list