mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
- Add SPI availability information to `APIAvailability` from attribute `@_spi_available`. - Correctly obtain effective availability for nested declarations without immediate availability attributes. Resolves rdar://159702280 <!-- If this pull request is targeting a release branch, please fill out the following form: https://github.com/swiftlang/.github/blob/main/PULL_REQUEST_TEMPLATE/release.md?plain=1 Otherwise, replace this comment with a description of your changes and rationale. Provide links to external references/discussions if appropriate. If this pull request resolves any GitHub issues, link them like so: Resolves <link to issue>, resolves <link to another issue>. For more information about linking a pull request to an issue, see: https://docs.github.com/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue --> <!-- Before merging this pull request, you must run the Swift continuous integration tests. For information about triggering CI builds via @swift-ci, see: https://github.com/apple/swift/blob/main/docs/ContinuousIntegration.md#swift-ci Thank you for your contribution to Swift! -->
60 lines
2.4 KiB
Swift
60 lines
2.4 KiB
Swift
// REQUIRES: objc_interop, OS=macosx
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %empty-directory(%t/ModuleCache)
|
|
// RUN: %target-swift-frontend %s -typecheck -parse-as-library -emit-module-interface-path %t/MyModule.swiftinterface -enable-library-evolution -module-name MyModule -swift-version 5
|
|
// RUN: %target-swift-frontend %s -typecheck -parse-as-library -emit-module-interface-path %t/MyModule.swiftinterface -enable-library-evolution -module-name MyModule -swift-version 5 -emit-api-descriptor-path %t/api.json
|
|
// RUN: %validate-json %t/api.json | %FileCheck %s
|
|
|
|
// Struct has no objc data.
|
|
@available(macOS 10.13, *)
|
|
public struct TestStruct {
|
|
public init() {}
|
|
|
|
@available(macOS 10.14, *)
|
|
public func testMethod() {}
|
|
}
|
|
|
|
// CHECK: {
|
|
// CHECK-NEXT: "target":
|
|
// CHECK-NEXT: "globals": [
|
|
// CHECK-NEXT: {
|
|
// CHECK-NEXT: "name": "_$s8MyModule10TestStructV10testMethodyyF",
|
|
// CHECK-NEXT: "access": "public",
|
|
// CHECK-NEXT: "file": "SOURCE_DIR/test/APIJSON/struct.swift",
|
|
// CHECK-NEXT: "linkage": "exported",
|
|
// CHECK-NEXT: "introduced": "10.14"
|
|
// CHECK-NEXT: },
|
|
// CHECK-NEXT: {
|
|
// CHECK-NEXT: "name": "_$s8MyModule10TestStructVACycfC",
|
|
// CHECK-NEXT: "access": "public",
|
|
// CHECK-NEXT: "file": "SOURCE_DIR/test/APIJSON/struct.swift",
|
|
// CHECK-NEXT: "linkage": "exported",
|
|
// CHECK-NEXT: "introduced": "10.13"
|
|
// CHECK-NEXT: },
|
|
// CHECK-NEXT: {
|
|
// CHECK-NEXT: "name": "_$s8MyModule10TestStructVMa",
|
|
// CHECK-NEXT: "access": "public",
|
|
// CHECK-NEXT: "file": "SOURCE_DIR/test/APIJSON/struct.swift",
|
|
// CHECK-NEXT: "linkage": "exported",
|
|
// CHECK-NEXT: "introduced": "10.13"
|
|
// CHECK-NEXT: },
|
|
// CHECK-NEXT: {
|
|
// CHECK-NEXT: "name": "_$s8MyModule10TestStructVMn",
|
|
// CHECK-NEXT: "access": "public",
|
|
// CHECK-NEXT: "file": "SOURCE_DIR/test/APIJSON/struct.swift",
|
|
// CHECK-NEXT: "linkage": "exported",
|
|
// CHECK-NEXT: "introduced": "10.13"
|
|
// CHECK-NEXT: },
|
|
// CHECK-NEXT: {
|
|
// CHECK-NEXT: "name": "_$s8MyModule10TestStructVN",
|
|
// CHECK-NEXT: "access": "public",
|
|
// CHECK-NEXT: "file": "SOURCE_DIR/test/APIJSON/struct.swift",
|
|
// CHECK-NEXT: "linkage": "exported",
|
|
// CHECK-NEXT: "introduced": "10.13"
|
|
// CHECK-NEXT: }
|
|
// CHECK-NEXT: ],
|
|
// CHECK-NEXT: "interfaces": [],
|
|
// CHECK-NEXT: "categories": [],
|
|
// CHECK-NEXT: "version": "1.0"
|
|
// CHECK-NEXT: }
|