[PATCH] D75747: [clang-format] Correct indentation for `[key] = value,` entries in C++ object initialisers
Jonathan B Coe via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 9 10:46:58 PDT 2020
jbcoe updated this revision to Diff 249155.
jbcoe added a comment.
Format code.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75747/new/
https://reviews.llvm.org/D75747
Files:
clang/lib/Format/ContinuationIndenter.cpp
clang/unittests/Format/FormatTestCSharp.cpp
Index: clang/unittests/Format/FormatTestCSharp.cpp
===================================================================
--- clang/unittests/Format/FormatTestCSharp.cpp
+++ clang/unittests/Format/FormatTestCSharp.cpp
@@ -549,6 +549,15 @@
private Transformer _transformer = new X.Y {
Filler = (Shape shape) => { return new Transform.Fill(shape, RED); },
Scaler = (Shape shape) => { return new Transform.Resize(shape, 0.1); },
+};)",
+ Style);
+
+ // Dictionary initialisation.
+ verifyFormat(R"(//
+var myDict = new Dictionary<string, string> {
+ ["name"] = _donald,
+ ["age"] = Convert.ToString(DateTime.Today.Year - 1934),
+ ["type"] = _duck,
};)",
Style);
}
Index: clang/lib/Format/ContinuationIndenter.cpp
===================================================================
--- clang/lib/Format/ContinuationIndenter.cpp
+++ clang/lib/Format/ContinuationIndenter.cpp
@@ -1047,6 +1047,9 @@
if (NextNonComment->is(TT_ArraySubscriptLSquare)) {
if (State.Stack.back().StartOfArraySubscripts != 0)
return State.Stack.back().StartOfArraySubscripts;
+ else if (Style.isCSharp()) // C# allows `["key"] = value` inside object
+ // initializers.
+ return State.Stack.back().Indent;
return ContinuationIndent;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75747.249155.patch
Type: text/x-patch
Size: 1308 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200309/123a7b49/attachment.bin>
More information about the cfe-commits
mailing list