[PATCH] D74050: [clang-format] Do not merge short C# class definitions into one line
Phabricator via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 5 09:46:49 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf40a7972cb42: [clang-format] Do not merge short C# class definitions into one line (authored by Jonathan Coe <jbcoe at google.com>).
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74050/new/
https://reviews.llvm.org/D74050
Files:
clang/lib/Format/UnwrappedLineFormatter.cpp
clang/unittests/Format/FormatTestCSharp.cpp
Index: clang/unittests/Format/FormatTestCSharp.cpp
===================================================================
--- clang/unittests/Format/FormatTestCSharp.cpp
+++ clang/unittests/Format/FormatTestCSharp.cpp
@@ -70,6 +70,30 @@
" f();\n"
" }\n"
"}");
+
+ // Ensure that small and empty classes are handled correctly with condensed
+ // (Google C++-like) brace-breaking style.
+ FormatStyle Style = getGoogleStyle(FormatStyle::LK_CSharp);
+ Style.BreakBeforeBraces = FormatStyle::BS_Attach;
+
+ verifyFormat("public class SomeEmptyClass {}", Style);
+
+ verifyFormat("public class SomeTinyClass {\n"
+ " int X;\n"
+ "}",
+ Style);
+ verifyFormat("private class SomeTinyClass {\n"
+ " int X;\n"
+ "}",
+ Style);
+ verifyFormat("protected class SomeTinyClass {\n"
+ " int X;\n"
+ "}",
+ Style);
+ verifyFormat("internal class SomeTinyClass {\n"
+ " int X;\n"
+ "}",
+ Style);
}
TEST_F(FormatTestCSharp, AccessModifiers) {
Index: clang/lib/Format/UnwrappedLineFormatter.cpp
===================================================================
--- clang/lib/Format/UnwrappedLineFormatter.cpp
+++ clang/lib/Format/UnwrappedLineFormatter.cpp
@@ -593,9 +593,10 @@
FormatToken *RecordTok = Line.First;
// Skip record modifiers.
while (RecordTok->Next &&
- RecordTok->isOneOf(tok::kw_typedef, tok::kw_export,
- Keywords.kw_declare, Keywords.kw_abstract,
- tok::kw_default))
+ RecordTok->isOneOf(
+ tok::kw_typedef, tok::kw_export, Keywords.kw_declare,
+ Keywords.kw_abstract, tok::kw_default, tok::kw_public,
+ tok::kw_private, tok::kw_protected, Keywords.kw_internal))
RecordTok = RecordTok->Next;
if (RecordTok &&
RecordTok->isOneOf(tok::kw_class, tok::kw_union, tok::kw_struct,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74050.242670.patch
Type: text/x-patch
Size: 2131 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200205/f7989627/attachment.bin>
More information about the cfe-commits
mailing list