[PATCH] D111975: [clang-format] [PR52015] clang-format should put __attribute__((foo)) on its own line before @interface / @implementation / @protocol
MyDeveloperDay via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 18 01:06:37 PDT 2021
MyDeveloperDay created this revision.
MyDeveloperDay added reviewers: benhamilton, krasimir, HazardyKnusperkeks, curdeius.
MyDeveloperDay added projects: clang, clang-format.
MyDeveloperDay requested review of this revision.
https://bugs.llvm.org/show_bug.cgi?id=52015
A newline should be place between attribute and @ for objectivec
__attribute__((objc_subclassing_restricted))
@interface Foo
@end
at present it formats as
__attribute__((objc_subclassing_restricted)) @interface Foo
@end
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D111975
Files:
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTestObjC.cpp
Index: clang/unittests/Format/FormatTestObjC.cpp
===================================================================
--- clang/unittests/Format/FormatTestObjC.cpp
+++ clang/unittests/Format/FormatTestObjC.cpp
@@ -1526,6 +1526,18 @@
" [obj func:arg2];");
}
+TEST_F(FormatTestObjC, Attributes) {
+ verifyFormat("__attribute__((objc_subclassing_restricted))\n"
+ "@interface Foo\n"
+ "@end");
+ verifyFormat("__attribute__((objc_subclassing_restricted))\n"
+ "@protocol Foo\n"
+ "@end");
+ verifyFormat("__attribute__((objc_subclassing_restricted))\n"
+ "@implementation Foo\n"
+ "@end");
+}
+
} // end namespace
} // end namespace format
} // end namespace clang
Index: clang/lib/Format/TokenAnnotator.cpp
===================================================================
--- clang/lib/Format/TokenAnnotator.cpp
+++ clang/lib/Format/TokenAnnotator.cpp
@@ -3832,6 +3832,10 @@
Style.AllowShortBlocksOnASingleLine == FormatStyle::SBS_Never)
return true;
+ // Ensure wrapping after __attribute__((XX)) and @interface etc.
+ if (Left.is(TT_AttributeParen) && Right.is(TT_ObjCDecl))
+ return true;
+
if (Left.is(TT_LambdaLBrace)) {
if (IsFunctionArgument(Left) &&
Style.AllowShortLambdasOnASingleLine == FormatStyle::SLS_Inline)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111975.380297.patch
Type: text/x-patch
Size: 1369 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20211018/4368190e/attachment.bin>
More information about the cfe-commits
mailing list