Skip to content

Commit e82e7d5

Browse files
committed
[Clang importer] Map swift_objc_members attribute found on superclasses.
Fixes rdar://problem/33514802.
1 parent 8b3889a commit e82e7d5

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

lib/ClangImporter/ImportDecl.cpp

+7-2
Original file line numberDiff line numberDiff line change
@@ -7103,8 +7103,13 @@ void ClangImporter::Implementation::importAttributes(
71037103
return;
71047104
}
71057105

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>())) {
71087113
if (!MappedDecl->getAttrs().hasAttribute<ObjCMembersAttr>()) {
71097114
auto attr = new (C) ObjCMembersAttr(/*IsImplicit=*/true);
71107115
MappedDecl->getAttrs().add(attr);

test/APINotes/Inputs/custom-frameworks/APINotesFrameworkTest.framework/Headers/APINotesFrameworkTest.h

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ __attribute__((objc_root_class))
2222
@interface Base
2323
@end
2424

25+
@interface B : A
26+
@end
27+
28+
@interface C : B
29+
@end
30+
2531
#endif // __OBJC__
2632

2733
#import <APINotesFrameworkTest/Classes.h>

test/APINotes/basic.swift

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22
import APINotesTest
33
import APINotesFrameworkTest
44

@@ -7,8 +7,18 @@ extension A {
77
func implicitlyObjC() { }
88
}
99

10+
extension C {
11+
func alsoImplicitlyObjC() { }
12+
}
13+
14+
class D : C {
15+
func yetAnotherImplicitlyObjC() { }
16+
}
17+
1018
func testSelectors(a: AnyObject) {
1119
a.implicitlyObjC?() // okay: would complain without SwiftObjCMembers
20+
a.alsoImplicitlyObjC?() // okay: would complain without SwiftObjCMembers
21+
a.yetAnotherImplicitlyObjC?() // okay: would complain without SwiftObjCMembers
1222
}
1323
#endif
1424

0 commit comments

Comments
 (0)