File tree 3 files changed +24
-3
lines changed
3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -7103,8 +7103,13 @@ void ClangImporter::Implementation::importAttributes(
7103
7103
return ;
7104
7104
}
7105
7105
7106
- // Map Clang's swift_objc_members attribute to @objcMembers.
7107
- if (ID->hasAttr <clang::SwiftObjCMembersAttr>()) {
7106
+ // Map Clang's swift_objc_members attribute to @objcMembers. Also handle
7107
+ // inheritance of @objcMembers by looking at the superclass.
7108
+ if (ID->hasAttr <clang::SwiftObjCMembersAttr>() ||
7109
+ (isa<ClassDecl>(MappedDecl) &&
7110
+ cast<ClassDecl>(MappedDecl)->hasSuperclass () &&
7111
+ cast<ClassDecl>(MappedDecl)->getSuperclassDecl ()
7112
+ ->getAttrs ().hasAttribute <ObjCMembersAttr>())) {
7108
7113
if (!MappedDecl->getAttrs ().hasAttribute <ObjCMembersAttr>()) {
7109
7114
auto attr = new (C) ObjCMembersAttr (/* IsImplicit=*/ true );
7110
7115
MappedDecl->getAttrs ().add (attr);
Original file line number Diff line number Diff line change @@ -22,6 +22,12 @@ __attribute__((objc_root_class))
22
22
@interface Base
23
23
@end
24
24
25
+ @interface B : A
26
+ @end
27
+
28
+ @interface C : B
29
+ @end
30
+
25
31
#endif // __OBJC__
26
32
27
33
#import < APINotesFrameworkTest/Classes.h>
Original file line number Diff line number Diff line change 1
- // RUN: %target-typecheck-verify-swift -I %S/Inputs/custom-modules -F %S/Inputs/custom-frameworks
1
+ // RUN: %target-typecheck-verify-swift -I %S/Inputs/custom-modules -F %S/Inputs/custom-frameworks -swift-version 4
2
2
import APINotesTest
3
3
import APINotesFrameworkTest
4
4
@@ -7,8 +7,18 @@ extension A {
7
7
func implicitlyObjC( ) { }
8
8
}
9
9
10
+ extension C {
11
+ func alsoImplicitlyObjC( ) { }
12
+ }
13
+
14
+ class D : C {
15
+ func yetAnotherImplicitlyObjC( ) { }
16
+ }
17
+
10
18
func testSelectors( a: AnyObject ) {
11
19
a. implicitlyObjC ? ( ) // okay: would complain without SwiftObjCMembers
20
+ a. alsoImplicitlyObjC ? ( ) // okay: would complain without SwiftObjCMembers
21
+ a. yetAnotherImplicitlyObjC ? ( ) // okay: would complain without SwiftObjCMembers
12
22
}
13
23
#endif
14
24
You can’t perform that action at this time.
0 commit comments