File: can_import.swift

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (112 lines) | stat: -rw-r--r-- 2,237 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// RUN: %target-typecheck-verify-swift -parse-as-library
// RUN: %target-typecheck-verify-swift -D WITH_PERFORM -primary-file %s %S/Inputs/can_import_nonprimary_file.swift

public struct LibraryDependentBool : ExpressibleByBooleanLiteral {
#if canImport(Swift)
  var _description: String
#endif

  public let magicConstant: Int = {
#if canImport(Swift)
    return 42
#else
    return "" // Type error
#endif
  }()

#if canImport(AppKit) || (canImport(UIKit) && (arch(i386) || arch(arm)))
  // On OS X and 32-bit iOS, Objective-C's BOOL type is a "signed char".
  var _value: Int8

  init(_ value: Int8) {
    self._value = value
#if canImport(Swift)
    self._description = "\(value)"
#endif
  }

  public init(_ value: Bool) {
#if canImport(Swift)
  self._description = value ? "YES" : "NO"
#endif
    self._value = value ? 1 : 0
  }

#else
  // Everywhere else it is C/C++'s "Bool"
  var _value: Bool

  public init(_ value: Bool) {
#if canImport(Swift)
    self._description = value ? "YES" : "NO"
#endif
    self._value = value
  }
#endif

  /// The value of `self`, expressed as a `Bool`.
  public var boolValue: Bool {
#if canImport(AppKit) || (canImport(UIKit) && (arch(i386) || arch(arm)))
    return _value != 0
#else
    return _value
#endif
  }

  /// Create an instance initialized to `value`.
  public init(booleanLiteral value: Bool) {
    self.init(value)
  }

  func withBoolValue(_ f : (Bool) -> ()) {
    return f(self.boolValue)
  } 
}

#if canImport(Swift)
func topLevelFunction() {
  LibraryDependentBool(true).withBoolValue { b in
    let value: String
#if canImport(Swiftz)
#if canImport(ReactiveCocoa)
#if canImport(Darwin)
    value = NSObject() // Type error
#endif
#endif
#else
    value = ""
#endif
    print(value)
  }
}
#else
enum LibraryDependentBool {} // This should not happen
#endif

#if WITH_PERFORM
func performPerOS() -> Int {
  let value: Int
#if canImport(Argo)
  value = "" // Type error
#else
  value = 42
#endif
  return performFoo(withX: value, andY: value)
}
#endif

let osName: String = {
#if os(iOS)
  return "iOS"
#elseif os(watchOS)
  return "watchOS"
#elseif os(tvOS)
  return "tvOS"
#elseif os(OSX)
  return "OS X"
#elseif os(Linux)
  return "Linux"
#else
  return "Unknown"
#endif
}()