Skip to content

Commit 194d00e

Browse files
committedJan 17, 2019
[ObjC] Follow-up r350768 and allow the use of unavailable methods that are
declared in a parent class from within the @implementation context This commit extends r350768 and allows the use of methods marked as unavailable that are declared in a parent class/category from within the @implementation of the class where the method is marked as unavailable. This allows users to call init that's marked as unavailable even if they don't define it. rdar://47134898 Differential Revision: https://reviews.llvm.org/D56816 llvm-svn: 351459
1 parent 4fce28c commit 194d00e

File tree

3 files changed

+25
-9
lines changed

3 files changed

+25
-9
lines changed
 

‎clang/lib/Sema/SemaDeclAttr.cpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -7365,13 +7365,11 @@ ShouldDiagnoseAvailabilityInContext(Sema &S, AvailabilityResult K,
73657365
return true;
73667366
} else if (K == AR_Unavailable) {
73677367
// It is perfectly fine to refer to an 'unavailable' Objective-C method
7368-
// when it's actually defined and is referenced from within the
7369-
// @implementation itself. In this context, we interpret unavailable as a
7370-
// form of access control.
7368+
// when it is referenced from within the @implementation itself. In this
7369+
// context, we interpret unavailable as a form of access control.
73717370
if (const auto *MD = dyn_cast<ObjCMethodDecl>(OffendingDecl)) {
73727371
if (const auto *Impl = dyn_cast<ObjCImplDecl>(C)) {
7373-
if (MD->getClassInterface() == Impl->getClassInterface() &&
7374-
MD->isDefined())
7372+
if (MD->getClassInterface() == Impl->getClassInterface())
73757373
return true;
73767374
}
73777375
}

‎clang/test/SemaObjC/call-unavailable-init-in-self.m

+20-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,24 @@ @interface NSObject
55
+ (instancetype)new;
66
+ (instancetype)alloc;
77

8+
- (void)declaredInSuper;
9+
10+
@end
11+
12+
@interface NSObject (Category)
13+
14+
- (void)declaredInSuperCategory;
15+
816
@end
917

1018
@interface Sub: NSObject
1119

1220
- (instancetype)init __attribute__((unavailable)); // expected-note 4 {{'init' has been explicitly marked unavailable here}}
1321

14-
- (void)notImplemented __attribute__((unavailable)); // expected-note {{'notImplemented' has been explicitly marked unavailable here}}
22+
- (void)notImplemented __attribute__((unavailable));
23+
24+
- (void)declaredInSuper __attribute__((unavailable));
25+
- (void)declaredInSuperCategory __attribute__((unavailable));
1526

1627
@end
1728

@@ -34,7 +45,14 @@ - (instancetype) init {
3445
}
3546

3647
- (void)reportUseOfUnimplemented {
37-
[self notImplemented]; // expected-error {{'notImplemented' is unavailable}}
48+
[self notImplemented];
49+
}
50+
51+
- (void)allowSuperCallUsingSelf {
52+
[self declaredInSuper];
53+
[[Sub alloc] declaredInSuper];
54+
[self declaredInSuperCategory];
55+
[[Sub alloc] declaredInSuperCategory];
3856
}
3957

4058
@end

‎clang/test/SemaObjC/infer-availability-from-init.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ void usenotmyobject() {
4747
}
4848

4949
@interface FromSelf : NSObject
50-
-(instancetype)init __attribute__((unavailable)); // expected-note {{'init' has been explicitly marked unavailable here}}
50+
-(instancetype)init __attribute__((unavailable));
5151
+(FromSelf*)another_one;
5252
@end
5353

5454
@implementation FromSelf
5555
+(FromSelf*)another_one {
56-
[self new]; // expected-error{{'new' is unavailable}}
56+
[self new];
5757
}
5858
@end

0 commit comments

Comments
 (0)
Please sign in to comment.