File: availability-macos.swift

package info (click to toggle)
swiftlang 6.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,856,264 kB
  • sloc: cpp: 9,995,718; ansic: 2,234,019; asm: 1,092,167; python: 313,940; objc: 82,726; f90: 80,126; lisp: 38,373; pascal: 25,580; sh: 20,378; ml: 5,058; perl: 4,751; makefile: 4,725; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (79 lines) | stat: -rw-r--r-- 2,878 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// RUN: %empty-directory(%t)

// RUN: %target-swift-emit-module-interface(%t/Test.swiftinterface) %s -module-name Test -target %target-cpu-apple-macos51
// RUN: %target-swift-typecheck-module-from-interface(%t/Test.swiftinterface) -module-name Test
// RUN: %FileCheck %s < %t/Test.swiftinterface

// RUN: %target-swift-emit-module-interface(%t/TestMinInlining.swiftinterface) %s -module-name Test -target %target-cpu-apple-macos51 -target-min-inlining-version min
// RUN: %target-swift-typecheck-module-from-interface(%t/TestMinInlining.swiftinterface) -module-name Test
// RUN: %FileCheck %s < %t/TestMinInlining.swiftinterface

// REQUIRES: OS=macosx

// CHECK-LABEL: public struct StructWithProperties
public struct StructWithProperties {
  // CHECK:      @available(macOS, unavailable)
  // CHECK-NEXT: public var unavailableComputed: Swift.Int {
  // CHECK-NEXT:   get
  // CHECK-NEXT: }
  @available(macOS, unavailable)
  public var unavailableComputed: Int { 1 }

  // CHECK:      @available(macOS 51, *)
  // CHECK-NEXT: public let introducedAtDeploymentStored: Swift.Int
  @available(macOS 51, *)
  public let introducedAtDeploymentStored: Int = 1

  // CHECK:      @available(macOS 99, *)
  // CHECK-NEXT: public var introducedAfterDeploymentComputed: Swift.Int {
  // CHECK-NEXT:   get
  // CHECK-NEXT: }
  @available(macOS 99, *)
  public var introducedAfterDeploymentComputed: Int { 1 }

  // CHECK:      @available(macOS, unavailable)
  // CHECK-NEXT: public let introducedAtDeploymentSPIStored: Swift.Int
  @_spi_available(macOS 51, *)
  public let introducedAtDeploymentSPIStored: Int = 1
}

// CHECK-LABEL: public enum EnumWithAssociatedValues
public enum EnumWithAssociatedValues {
  // CHECK:      @available(macOS, unavailable)
  // CHECK-NEXT: case unavailable
  @available(macOS, unavailable)
  case unavailable

  // CHECK:      @available(macOS 51, *)
  // CHECK-NEXT: case introducedAtDeployment
  @available(macOS 51, *)
  case introducedAtDeployment

  // CHECK:      @available(macOS 99, *)
  // CHECK-NEXT: case introducedAfterDeployment
  @available(macOS 99, *)
  case introducedAfterDeployment

  // CHECK:      @available(macOS, unavailable)
  // CHECK-NEXT: case unavailableWithAssoc(Swift.Int)
  @available(macOS, unavailable)
  case unavailableWithAssoc(Int)

  // CHECK:      @available(macOS 51, *)
  // CHECK-NEXT: case introducedAtDeploymentWithAssoc(Swift.Int)
  @available(macOS 51, *)
  case introducedAtDeploymentWithAssoc(Int)
}

// CHECK-LABEL: public protocol Proto
public protocol Proto {
  // CHECK:      @available(macOS 99, *)
  // CHECK-NEXT: func reqIntroducedAfterDeployment()
  @available(macOS 99, *)
  func reqIntroducedAfterDeployment()

  // CHECK:      @available(macOS, unavailable)
  // CHECK-NEXT: func reqIntroducedAsSPIAfterDeployment()
  @_spi_available(macOS 99, *)
  func reqIntroducedAsSPIAfterDeployment()
}