[PATCH] D115673: [clang-format] C# switch expression formatting differs from normal switch formatting
MyDeveloperDay via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 13 13:42:25 PST 2021
MyDeveloperDay created this revision.
MyDeveloperDay added reviewers: HazardyKnusperkeks, curdeius, jbcoe.
MyDeveloperDay added projects: clang, clang-format.
MyDeveloperDay requested review of this revision.
https://github.com/llvm/llvm-project/issues/52677
clang-format doesn't format C# switch expressions very well.
int x = a switch {
1 => (0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0),
2 => 1,
_ => 2
};
int x = a switch { 1 => (0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0), 2 => 1, _ => 2 };
Start with this small use case and try and improve the output. I'll look for other examples to add as tests
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D115673
Files:
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTestCSharp.cpp
Index: clang/unittests/Format/FormatTestCSharp.cpp
===================================================================
--- clang/unittests/Format/FormatTestCSharp.cpp
+++ clang/unittests/Format/FormatTestCSharp.cpp
@@ -1369,5 +1369,15 @@
Style);
}
+TEST_F(FormatTestCSharp, SwitchExpression) {
+ FormatStyle Style = getMicrosoftStyle(FormatStyle::LK_CSharp);
+ verifyFormat("int x = a switch {\n"
+ " 1 => (0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0),\n"
+ " 2 => 1,\n"
+ " _ => 2\n"
+ "};\n",
+ Style);
+}
+
} // namespace format
} // end namespace clang
Index: clang/lib/Format/TokenAnnotator.cpp
===================================================================
--- clang/lib/Format/TokenAnnotator.cpp
+++ clang/lib/Format/TokenAnnotator.cpp
@@ -3716,6 +3716,10 @@
return false;
if (Right.is(TT_CSharpGenericTypeConstraint))
return true;
+ if (Right.Next && Right.Next->is(TT_FatArrow) &&
+ (Right.is(tok::numeric_constant) ||
+ (Right.is(tok::identifier) && Right.TokenText == "_")))
+ return true;
// Break after C# [...] and before public/protected/private/internal.
if (Left.is(TT_AttributeSquare) && Left.is(tok::r_square) &&
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D115673.394043.patch
Type: text/x-patch
Size: 1291 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20211213/a7a0412f/attachment.bin>
More information about the cfe-commits
mailing list