[PATCH] D122301: [clang-format] Fix invalid code generation with comments in lambda
Owen Pan via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 23 03:44:56 PDT 2022
owenpan created this revision.
owenpan added reviewers: MyDeveloperDay, curdeius, HazardyKnusperkeks.
owenpan added a project: clang-format.
Herald added a project: All.
owenpan requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Fixes:
https://github.com/llvm/llvm-project/issues/51234
https://github.com/llvm/llvm-project/issues/54496
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D122301
Files:
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp
Index: clang/unittests/Format/FormatTest.cpp
===================================================================
--- clang/unittests/Format/FormatTest.cpp
+++ clang/unittests/Format/FormatTest.cpp
@@ -21888,6 +21888,30 @@
"auto k = []() // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n"
"{ return; }",
LLVMWithBeforeLambdaBody);
+
+ LLVMWithBeforeLambdaBody.ColumnLimit = 0;
+
+ verifyFormat("foo([]()\n"
+ " {\n"
+ " bar(); //\n"
+ " return 1; // comment\n"
+ " }());",
+ "foo([]() {\n"
+ " bar(); //\n"
+ " return 1; // comment\n"
+ "}());",
+ LLVMWithBeforeLambdaBody);
+ verifyFormat("foo(\n"
+ " 1, MACRO {\n"
+ " baz();\n"
+ " bar(); // comment\n"
+ " },\n"
+ " []() {});",
+ "foo(\n"
+ " 1, MACRO { baz(); bar(); // comment\n"
+ " }, []() {}\n"
+ ");",
+ LLVMWithBeforeLambdaBody);
}
TEST_F(FormatTest, EmptyLinesInLambdas) {
Index: clang/lib/Format/TokenAnnotator.cpp
===================================================================
--- clang/lib/Format/TokenAnnotator.cpp
+++ clang/lib/Format/TokenAnnotator.cpp
@@ -2762,12 +2762,16 @@
Current->SpacesRequiredBefore = 1;
}
- Current->MustBreakBefore =
- Current->MustBreakBefore || mustBreakBefore(Line, *Current);
-
- if (!Current->MustBreakBefore && InFunctionDecl &&
- Current->is(TT_FunctionDeclarationName))
- Current->MustBreakBefore = mustBreakForReturnType(Line);
+ const auto &Children = Prev->Children;
+ if (!Children.empty() && Children.back()->Last->is(TT_LineComment)) {
+ Current->MustBreakBefore = true;
+ } else {
+ Current->MustBreakBefore =
+ Current->MustBreakBefore || mustBreakBefore(Line, *Current);
+ if (!Current->MustBreakBefore && InFunctionDecl &&
+ Current->is(TT_FunctionDeclarationName))
+ Current->MustBreakBefore = mustBreakForReturnType(Line);
+ }
Current->CanBreakBefore =
Current->MustBreakBefore || canBreakBefore(Line, *Current);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122301.417555.patch
Type: text/x-patch
Size: 2278 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220323/e90b357e/attachment.bin>
More information about the cfe-commits
mailing list