From: mydeveloperday Date: Wed, 15 Dec 2021 19:36:22 +0000 (+0000) Subject: [clang-format] C# switch expression formatting differs from normal switch formatting X-Git-Tag: upstream/15.0.7~22936 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ebed0ca71561f5ca5d54b1f5ddf783897fea002e;p=platform%2Fupstream%2Fllvm.git [clang-format] C# switch expression formatting differs from normal switch formatting https://github.com/llvm/llvm-project/issues/52677 clang-format doesn't format C# switch expressions very well. Start with this small use case and try and improve the output. I'll look for other examples to add as tests Reviewed By: curdeius Differential Revision: https://reviews.llvm.org/D115673 Fixes #52677 --- diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index c0d0303..9dfe1d3 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -3716,6 +3716,10 @@ bool TokenAnnotator::mustBreakBefore(const AnnotatedLine &Line, 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) && diff --git a/clang/unittests/Format/FormatTestCSharp.cpp b/clang/unittests/Format/FormatTestCSharp.cpp index bb91cd6..0536903 100644 --- a/clang/unittests/Format/FormatTestCSharp.cpp +++ b/clang/unittests/Format/FormatTestCSharp.cpp @@ -1369,5 +1369,15 @@ TEST_F(FormatTestCSharp, NamespaceIndentation) { 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