forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sema: Diagnose unsupported '@objc' on classes and members of extensio…
…ns of classes with resilient ancestry Unless -enable-resilient-objc-class-stubs is passed in, these cases are not supported, so now we diagnose them instead of asserting or failing to link. Note the behavior change here; classes with resilient ancestry were previously isObjC(). However this is wrong since isObjC() means "statically visible to Objective-C via the generated header". After this patch, isObjC() only returns true for a class with resilient ancestry if -enable-resilient-objc-class-stubs is passed in.
- Loading branch information
1 parent
68c0762
commit 8ecb83e
Showing
6 changed files
with
137 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// RUN: %empty-directory(%t) | ||
// RUN: %target-swift-frontend -emit-module-path %t/resilient_struct.swiftmodule %S/../Inputs/resilient_struct.swift -enable-library-evolution | ||
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -emit-module-path %t/resilient_objc_class.swiftmodule %S/../Inputs/resilient_objc_class.swift -I %t -enable-library-evolution | ||
// RUN: %target-swift-frontend -typecheck -verify %s -I %t | ||
|
||
// REQUIRES: objc_interop | ||
|
||
import Foundation | ||
import resilient_objc_class | ||
|
||
@objc public class ResilientNSObjectSubclass : ResilientNSObjectOutsideParent {} | ||
// expected-error@-1 {{classes built with library evolution support cannot have explicit '@objc' subclasses because they are not directly visible from Objective-C}} | ||
|
||
public class AnotherResilientNSObjectSubclass : ResilientNSObjectOutsideParent {} | ||
|
||
extension ResilientNSObjectOutsideParent { | ||
@objc public func categoryOneMethod() {} | ||
// expected-error@-1 {{extensions of classes built with library evolution support cannot contain '@objc' members}} | ||
} | ||
|
||
extension AnotherResilientNSObjectSubclass { | ||
@objc public func categoryTwoMethod() {} | ||
// expected-error@-1 {{extensions of classes built with library evolution support cannot contain '@objc' members}} | ||
} | ||
|
||
// Note: @_fixed_layout on a class only applies to the storage layout and | ||
// not metadata, which remains resilient. | ||
|
||
@_fixed_layout | ||
@objc public class FixedLayoutNSObjectSubclass : FixedLayoutNSObjectOutsideParent {} | ||
// expected-error@-1 {{classes built with library evolution support cannot have explicit '@objc' subclasses because they are not directly visible from Objective-C}} | ||
|
||
@_fixed_layout | ||
public class AnotherFixedLayoutNSObjectSubclass : FixedLayoutNSObjectOutsideParent {} | ||
|
||
extension FixedLayoutNSObjectOutsideParent { | ||
@objc public func categoryOneMethod() {} | ||
// expected-error@-1 {{extensions of classes built with library evolution support cannot contain '@objc' members}} | ||
} | ||
|
||
extension AnotherFixedLayoutNSObjectSubclass { | ||
@objc public func categoryTwoMethod() {} | ||
// expected-error@-1 {{extensions of classes built with library evolution support cannot contain '@objc' members}} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// RUN: %empty-directory(%t) | ||
// RUN: %target-swift-frontend -emit-module-path %t/resilient_struct.swiftmodule %S/../Inputs/resilient_struct.swift -enable-library-evolution | ||
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -emit-module-path %t/resilient_objc_class.swiftmodule %S/../Inputs/resilient_objc_class.swift -I %t -enable-library-evolution -enable-resilient-objc-class-stubs | ||
// RUN: %target-swift-frontend -typecheck -verify %s -I %t -enable-resilient-objc-class-stubs | ||
|
||
// REQUIRES: objc_interop | ||
|
||
import Foundation | ||
import resilient_objc_class | ||
|
||
// When built with -enable-resilient-objc-class-stubs, all of these cases are | ||
// allowed. | ||
|
||
@objc public class ResilientNSObjectSubclass : ResilientNSObjectOutsideParent {} | ||
|
||
public class AnotherResilientNSObjectSubclass : ResilientNSObjectOutsideParent {} | ||
|
||
extension ResilientNSObjectOutsideParent { | ||
@objc public func categoryOneMethod() {} | ||
} | ||
|
||
extension AnotherResilientNSObjectSubclass { | ||
@objc public func categoryTwoMethod() {} | ||
} | ||
|
||
// Note: @_fixed_layout on a class only applies to the storage layout and | ||
// not metadata, which remains resilient. | ||
|
||
@_fixed_layout | ||
@objc public class FixedLayoutNSObjectSubclass : FixedLayoutNSObjectOutsideParent {} | ||
|
||
@_fixed_layout | ||
public class AnotherFixedLayoutNSObjectSubclass : FixedLayoutNSObjectOutsideParent {} | ||
|
||
extension FixedLayoutNSObjectOutsideParent { | ||
@objc public func categoryOneMethod() {} | ||
} | ||
|
||
extension AnotherFixedLayoutNSObjectSubclass { | ||
@objc public func categoryTwoMethod() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters