[Sema][ObjC] Allow silencing -Wobjc-designated-initializers warnings by

declaring an unavailable method in the subclass's extension that
overrides the designated initializer in the base class.

r243676 made changes to allow declaring the unavailable method in the
subclass interface to silence the warning. This commit additionally
allows declaring the unavailable method in the class extension.

rdar://problem/42731306

llvm-svn: 355175
This commit is contained in:
Akira Hatanaka 2019-03-01 06:43:20 +00:00
parent f4b25f700a
commit 78be8b6d53
2 changed files with 22 additions and 0 deletions

View File

@ -2280,9 +2280,18 @@ void Sema::DiagnoseMissingDesignatedInitOverrides(
I = DesignatedInits.begin(), E = DesignatedInits.end(); I != E; ++I) {
const ObjCMethodDecl *MD = *I;
if (!InitSelSet.count(MD->getSelector())) {
// Don't emit a diagnostic if the overriding method in the subclass is
// marked as unavailable.
bool Ignore = false;
if (auto *IMD = IFD->getInstanceMethod(MD->getSelector())) {
Ignore = IMD->isUnavailable();
} else {
// Check the methods declared in the class extensions too.
for (auto *Ext : IFD->visible_extensions())
if (auto *IMD = Ext->getInstanceMethod(MD->getSelector())) {
Ignore = IMD->isUnavailable();
break;
}
}
if (!Ignore) {
Diag(ImplD->getLocation(),

View File

@ -389,6 +389,19 @@ __attribute__((objc_root_class))
}
@end
@interface SubTest1Ext : Test1
-(instancetype)initWithRequiredParameter:(id)foo NS_DESIGNATED_INITIALIZER;
@end
// Mark 'init' as unavailable in the extension to silence warning.
@interface SubTest1Ext()
-(instancetype)init NS_UNAVAILABLE;
@end
@implementation SubTest1Ext
-(instancetype)initWithRequiredParameter:(id)foo {
return [super init];
}
@end
@interface Test2 : NSObject
@end
@interface SubTest2 : Test2