[PATCH] D106773: [clang-format] Fix aligning with linebreaks #2
Björn Schäpers via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 28 23:55:08 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG75f6a795ee0f: [clang-format] Fix aligning with linebreaks #2 (authored by HazardyKnusperkeks).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D106773/new/
https://reviews.llvm.org/D106773
Files:
clang/lib/Format/WhitespaceManager.cpp
clang/unittests/Format/FormatTest.cpp
Index: clang/unittests/Format/FormatTest.cpp
===================================================================
--- clang/unittests/Format/FormatTest.cpp
+++ clang/unittests/Format/FormatTest.cpp
@@ -16419,6 +16419,37 @@
"}",
Style);
// clang-format on
+
+ Style = getLLVMStyleWithColumns(120);
+ Style.AlignConsecutiveAssignments = FormatStyle::ACS_Consecutive;
+ Style.ContinuationIndentWidth = 4;
+ Style.IndentWidth = 4;
+
+ // clang-format off
+ verifyFormat("void SomeFunc() {\n"
+ " newWatcher.maxAgeUsec = ToLegacyTimestamp(GetMaxAge(FromLegacyTimestamp<milliseconds>(monitorFrequencyUsec),\n"
+ " seconds(std::uint64_t(maxSampleAge)), maxKeepSamples));\n"
+ " newWatcher.maxAge = ToLegacyTimestamp(GetMaxAge(FromLegacyTimestamp<milliseconds>(monitorFrequencyUsec),\n"
+ " seconds(std::uint64_t(maxSampleAge)), maxKeepSamples));\n"
+ " newWatcher.max = ToLegacyTimestamp(GetMaxAge(FromLegacyTimestamp<milliseconds>(monitorFrequencyUsec),\n"
+ " seconds(std::uint64_t(maxSampleAge)), maxKeepSamples));\n"
+ "}",
+ Style);
+ // clang-format on
+
+ Style.BinPackArguments = false;
+
+ // clang-format off
+ verifyFormat("void SomeFunc() {\n"
+ " newWatcher.maxAgeUsec = ToLegacyTimestamp(GetMaxAge(\n"
+ " FromLegacyTimestamp<milliseconds>(monitorFrequencyUsec), seconds(std::uint64_t(maxSampleAge)), maxKeepSamples));\n"
+ " newWatcher.maxAge = ToLegacyTimestamp(GetMaxAge(\n"
+ " FromLegacyTimestamp<milliseconds>(monitorFrequencyUsec), seconds(std::uint64_t(maxSampleAge)), maxKeepSamples));\n"
+ " newWatcher.max = ToLegacyTimestamp(GetMaxAge(\n"
+ " FromLegacyTimestamp<milliseconds>(monitorFrequencyUsec), seconds(std::uint64_t(maxSampleAge)), maxKeepSamples));\n"
+ "}",
+ Style);
+ // clang-format on
}
TEST_F(FormatTest, AlignWithInitializerPeriods) {
Index: clang/lib/Format/WhitespaceManager.cpp
===================================================================
--- clang/lib/Format/WhitespaceManager.cpp
+++ clang/lib/Format/WhitespaceManager.cpp
@@ -347,7 +347,7 @@
if (ScopeStart > Start + 1 &&
Changes[ScopeStart - 2].Tok->is(tok::identifier) &&
Changes[ScopeStart - 1].Tok->is(tok::l_paren))
- return true;
+ return Style.BinPackArguments;
// Ternary operator
if (Changes[i].Tok->is(TT_ConditionalExpr))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D106773.362655.patch
Type: text/x-patch
Size: 2801 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210729/22212e35/attachment.bin>
More information about the cfe-commits
mailing list