From f65b08e8fd3e3184f11e410975efb1d0c6d23d4b Mon Sep 17 00:00:00 2001 From: Kyle Date: Mon, 27 Jul 2026 02:18:48 +0800 Subject: [PATCH 1/5] [CI] Update toolchain versions --- .github/actions/build-example/action.yml | 2 +- .github/workflows/ag_example.yml | 2 +- .github/workflows/bls_example.yml | 2 +- .github/workflows/coresvg_example.yml | 2 +- .github/workflows/coreui_example.yml | 2 +- .github/workflows/gf_example.yml | 2 +- .github/workflows/rb_example.yml | 2 +- .github/workflows/sfsymbols_example.yml | 2 +- Example/Tuist/Package.swift | 2 +- Package.swift | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/actions/build-example/action.yml b/.github/actions/build-example/action.yml index 5f237c9..20d1de8 100644 --- a/.github/actions/build-example/action.yml +++ b/.github/actions/build-example/action.yml @@ -11,7 +11,7 @@ inputs: xcode-version: description: Xcode version to use required: false - default: "26.3" + default: "26.6" runs: using: composite diff --git a/.github/workflows/ag_example.yml b/.github/workflows/ag_example.yml index 009b8e2..ebc6ec8 100644 --- a/.github/workflows/ag_example.yml +++ b/.github/workflows/ag_example.yml @@ -48,4 +48,4 @@ jobs: with: scheme: AGExample destination: ${{ matrix.destination }} - xcode-version: "26.3" + xcode-version: "26.6" diff --git a/.github/workflows/bls_example.yml b/.github/workflows/bls_example.yml index a66fcdd..085ce88 100644 --- a/.github/workflows/bls_example.yml +++ b/.github/workflows/bls_example.yml @@ -46,4 +46,4 @@ jobs: with: scheme: BLSExample destination: ${{ matrix.destination }} - xcode-version: "26.3" + xcode-version: "26.6" diff --git a/.github/workflows/coresvg_example.yml b/.github/workflows/coresvg_example.yml index 7ee0a73..1529597 100644 --- a/.github/workflows/coresvg_example.yml +++ b/.github/workflows/coresvg_example.yml @@ -48,4 +48,4 @@ jobs: with: scheme: CoreSVGExample destination: ${{ matrix.destination }} - xcode-version: "26.3" + xcode-version: "26.6" diff --git a/.github/workflows/coreui_example.yml b/.github/workflows/coreui_example.yml index 9ee9a0d..83fb6b0 100644 --- a/.github/workflows/coreui_example.yml +++ b/.github/workflows/coreui_example.yml @@ -48,4 +48,4 @@ jobs: with: scheme: CoreUIExample destination: ${{ matrix.destination }} - xcode-version: "26.3" + xcode-version: "26.6" diff --git a/.github/workflows/gf_example.yml b/.github/workflows/gf_example.yml index 243f02f..13e4953 100644 --- a/.github/workflows/gf_example.yml +++ b/.github/workflows/gf_example.yml @@ -48,4 +48,4 @@ jobs: with: scheme: GFExample destination: ${{ matrix.destination }} - xcode-version: "26.3" + xcode-version: "26.6" diff --git a/.github/workflows/rb_example.yml b/.github/workflows/rb_example.yml index 2f49901..c7a0821 100644 --- a/.github/workflows/rb_example.yml +++ b/.github/workflows/rb_example.yml @@ -48,4 +48,4 @@ jobs: with: scheme: RBExample destination: ${{ matrix.destination }} - xcode-version: "26.3" + xcode-version: "26.6" diff --git a/.github/workflows/sfsymbols_example.yml b/.github/workflows/sfsymbols_example.yml index ad81754..9e2eb8c 100644 --- a/.github/workflows/sfsymbols_example.yml +++ b/.github/workflows/sfsymbols_example.yml @@ -48,4 +48,4 @@ jobs: with: scheme: SFSymbolsExample destination: ${{ matrix.destination }} - xcode-version: "26.3" + xcode-version: "26.6" diff --git a/Example/Tuist/Package.swift b/Example/Tuist/Package.swift index 477bc5c..1982c4c 100644 --- a/Example/Tuist/Package.swift +++ b/Example/Tuist/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version: 6.2 +// swift-tools-version: 6.3 import PackageDescription diff --git a/Package.swift b/Package.swift index 5ec2d4e..a0e5b79 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version: 6.2 +// swift-tools-version: 6.3 import PackageDescription From ae6605d9d5e9e964e869c98a66bc2c4f483c4449 Mon Sep 17 00:00:00 2001 From: Kyle Date: Sat, 15 Aug 2026 15:21:01 +0800 Subject: [PATCH 2/5] Require Xcode 26.6 runner labels --- .github/workflows/ag_example.yml | 4 +++- .github/workflows/bls_example.yml | 4 +++- .github/workflows/coresvg_example.yml | 4 +++- .github/workflows/coreui_example.yml | 4 +++- .github/workflows/rb_example.yml | 4 +++- .github/workflows/sfsymbols_example.yml | 4 +++- 6 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ag_example.yml b/.github/workflows/ag_example.yml index ebc6ec8..6c1ffed 100644 --- a/.github/workflows/ag_example.yml +++ b/.github/workflows/ag_example.yml @@ -41,7 +41,9 @@ jobs: destination: "generic/platform=iOS Simulator" - platform: macOS destination: "platform=macOS" - runs-on: macos-15 + runs-on: + - macos-15 + - xcode-26.6 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/build-example diff --git a/.github/workflows/bls_example.yml b/.github/workflows/bls_example.yml index 085ce88..055af79 100644 --- a/.github/workflows/bls_example.yml +++ b/.github/workflows/bls_example.yml @@ -39,7 +39,9 @@ jobs: destination: "generic/platform=iOS" - platform: iOS Simulator destination: "generic/platform=iOS Simulator" - runs-on: macos-15 + runs-on: + - macos-15 + - xcode-26.6 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/build-example diff --git a/.github/workflows/coresvg_example.yml b/.github/workflows/coresvg_example.yml index 1529597..7c9d76d 100644 --- a/.github/workflows/coresvg_example.yml +++ b/.github/workflows/coresvg_example.yml @@ -41,7 +41,9 @@ jobs: destination: "generic/platform=iOS Simulator" - platform: macOS destination: "platform=macOS" - runs-on: macos-15 + runs-on: + - macos-15 + - xcode-26.6 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/build-example diff --git a/.github/workflows/coreui_example.yml b/.github/workflows/coreui_example.yml index 83fb6b0..290eef0 100644 --- a/.github/workflows/coreui_example.yml +++ b/.github/workflows/coreui_example.yml @@ -41,7 +41,9 @@ jobs: destination: "generic/platform=iOS Simulator" - platform: macOS destination: "platform=macOS" - runs-on: macos-15 + runs-on: + - macos-15 + - xcode-26.6 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/build-example diff --git a/.github/workflows/rb_example.yml b/.github/workflows/rb_example.yml index c7a0821..be322ea 100644 --- a/.github/workflows/rb_example.yml +++ b/.github/workflows/rb_example.yml @@ -41,7 +41,9 @@ jobs: destination: "generic/platform=iOS Simulator" - platform: macOS destination: "platform=macOS" - runs-on: macos-15 + runs-on: + - macos-15 + - xcode-26.6 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/build-example diff --git a/.github/workflows/sfsymbols_example.yml b/.github/workflows/sfsymbols_example.yml index 9e2eb8c..28b4aa9 100644 --- a/.github/workflows/sfsymbols_example.yml +++ b/.github/workflows/sfsymbols_example.yml @@ -41,7 +41,9 @@ jobs: destination: "generic/platform=iOS Simulator" - platform: macOS destination: "platform=macOS" - runs-on: macos-15 + runs-on: + - macos-15 + - xcode-26.6 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/build-example From e5fa9a611a40aec9d3560da3d398c6c90b6149be Mon Sep 17 00:00:00 2001 From: Kyle Date: Sat, 15 Aug 2026 17:53:00 +0800 Subject: [PATCH 3/5] Update generated interfaces for Swift 6.3 --- .../arm64-apple-ios-simulator.swiftinterface | 80 +------------------ .../x86_64-apple-ios-simulator.swiftinterface | 80 +------------------ .../arm64-apple-macos.swiftinterface | 80 +------------------ .../arm64e-apple-macos.swiftinterface | 80 +------------------ .../x86_64-apple-macos.swiftinterface | 80 +------------------ .../arm64-apple-ios-simulator.swiftinterface | 80 +------------------ .../x86_64-apple-ios-simulator.swiftinterface | 80 +------------------ .../arm64-apple-macos.swiftinterface | 80 +------------------ .../arm64e-apple-macos.swiftinterface | 80 +------------------ .../x86_64-apple-macos.swiftinterface | 80 +------------------ .../arm64-apple-xros-simulator.swiftinterface | 80 +------------------ ...x86_64-apple-xros-simulator.swiftinterface | 80 +------------------ AG/generate_swiftinterface.sh | 2 +- AG/update.sh | 4 +- .../arm64-apple-ios-simulator.swiftinterface | 38 +-------- .../x86_64-apple-ios-simulator.swiftinterface | 38 +-------- .../arm64-apple-macos.swiftinterface | 38 +-------- .../arm64e-apple-macos.swiftinterface | 38 +-------- .../x86_64-apple-macos.swiftinterface | 38 +-------- GF/generate_swiftinterface.sh | 2 +- GF/update.sh | 4 +- 21 files changed, 40 insertions(+), 1122 deletions(-) diff --git a/AG/2021/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/AG/2021/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-ios-simulator.swiftinterface index dac6eda..0b47c45 100644 --- a/AG/2021/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/AG/2021/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -211,16 +207,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -233,16 +225,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -264,40 +252,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -312,17 +286,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -399,17 +369,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -430,17 +396,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -453,15 +415,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -469,9 +425,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -543,10 +497,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -599,11 +551,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -620,12 +570,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -640,12 +588,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -675,22 +621,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -710,44 +650,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2021/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/AG/2021/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 773afd6..8401861 100644 --- a/AG/2021/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/AG/2021/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -211,16 +207,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -233,16 +225,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -264,40 +252,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -312,17 +286,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -399,17 +369,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -430,17 +396,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -453,15 +415,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -469,9 +425,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -543,10 +497,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -599,11 +551,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -620,12 +570,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -640,12 +588,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -675,22 +621,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -710,44 +650,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface b/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface index 7c5f3f1..909a901 100644 --- a/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface +++ b/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64-apple-macos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -211,16 +207,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -233,16 +225,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -264,40 +252,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -312,17 +286,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -399,17 +369,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -430,17 +396,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -453,15 +415,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -469,9 +425,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -543,10 +497,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -599,11 +551,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -620,12 +570,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -640,12 +588,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -675,22 +621,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -710,44 +650,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64e-apple-macos.swiftinterface b/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64e-apple-macos.swiftinterface index 886801e..d3eef49 100644 --- a/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64e-apple-macos.swiftinterface +++ b/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64e-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64e-apple-macos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -211,16 +207,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -233,16 +225,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -264,40 +252,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -312,17 +286,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -399,17 +369,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -430,17 +396,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -453,15 +415,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -469,9 +425,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -543,10 +497,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -599,11 +551,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -620,12 +570,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -640,12 +588,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -675,22 +621,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -710,44 +650,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface b/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface index c4ec315..1632420 100644 --- a/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface +++ b/AG/2021/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target x86_64-apple-macos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -211,16 +207,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -233,16 +225,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -264,40 +252,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -312,17 +286,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -399,17 +369,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -430,17 +396,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -453,15 +415,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -469,9 +425,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -543,10 +497,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -599,11 +551,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -620,12 +570,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -640,12 +588,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -675,22 +621,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -710,44 +650,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2024/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/AG/2024/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 32011cf..19c8479 100644 --- a/AG/2024/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/AG/2024/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64-apple-ios18.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -214,16 +210,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -236,16 +228,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -267,40 +255,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -315,17 +289,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -402,17 +372,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -433,17 +399,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -456,15 +418,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -472,9 +428,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -546,10 +500,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -602,11 +554,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -623,12 +573,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -643,12 +591,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -678,22 +624,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -713,44 +653,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2024/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/AG/2024/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index eea2588..27dad1e 100644 --- a/AG/2024/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/AG/2024/AttributeGraph.xcframework/ios-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target x86_64-apple-ios18.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -214,16 +210,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -236,16 +228,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -267,40 +255,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -315,17 +289,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -402,17 +372,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -433,17 +399,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -456,15 +418,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -472,9 +428,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -546,10 +500,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -602,11 +554,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -623,12 +573,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -643,12 +591,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -678,22 +624,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -713,44 +653,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface b/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface index b8fa3f5..3630f2f 100644 --- a/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface +++ b/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64-apple-macos15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -214,16 +210,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -236,16 +228,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -267,40 +255,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -315,17 +289,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -402,17 +372,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -433,17 +399,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -456,15 +418,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -472,9 +428,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -546,10 +500,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -602,11 +554,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -623,12 +573,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -643,12 +591,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -678,22 +624,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -713,44 +653,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64e-apple-macos.swiftinterface b/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64e-apple-macos.swiftinterface index 8ff8ac9..876eac9 100644 --- a/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64e-apple-macos.swiftinterface +++ b/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/arm64e-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64e-apple-macos15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -214,16 +210,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -236,16 +228,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -267,40 +255,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -315,17 +289,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -402,17 +372,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -433,17 +399,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -456,15 +418,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -472,9 +428,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -546,10 +500,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -602,11 +554,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -623,12 +573,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -643,12 +591,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -678,22 +624,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -713,44 +653,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface b/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface index 5235188..ecd594c 100644 --- a/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface +++ b/AG/2024/AttributeGraph.xcframework/macos-arm64e-arm64-x86_64/AttributeGraph.framework/Versions/A/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target x86_64-apple-macos15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -214,16 +210,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -236,16 +228,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -267,40 +255,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -315,17 +289,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -402,17 +372,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -433,17 +399,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -456,15 +418,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -472,9 +428,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -546,10 +500,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -602,11 +554,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -623,12 +573,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -643,12 +591,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -678,22 +624,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -713,44 +653,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2024/AttributeGraph.xcframework/xros-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-xros-simulator.swiftinterface b/AG/2024/AttributeGraph.xcframework/xros-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-xros-simulator.swiftinterface index 1c2d78f..a9cbb6c 100644 --- a/AG/2024/AttributeGraph.xcframework/xros-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-xros-simulator.swiftinterface +++ b/AG/2024/AttributeGraph.xcframework/xros-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-xros-simulator.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64-apple-xros2.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -214,16 +210,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -236,16 +228,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -267,40 +255,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -315,17 +289,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -402,17 +372,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -433,17 +399,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -456,15 +418,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -472,9 +428,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -546,10 +500,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -602,11 +554,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -623,12 +573,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -643,12 +591,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -678,22 +624,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -713,44 +653,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/2024/AttributeGraph.xcframework/xros-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-xros-simulator.swiftinterface b/AG/2024/AttributeGraph.xcframework/xros-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-xros-simulator.swiftinterface index 4ad4dc9..e440511 100644 --- a/AG/2024/AttributeGraph.xcframework/xros-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-xros-simulator.swiftinterface +++ b/AG/2024/AttributeGraph.xcframework/xros-arm64-x86_64-simulator/AttributeGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-xros-simulator.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target x86_64-apple-xros2.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 @_exported public import AttributeGraph public import Swift public import _Concurrency @@ -38,10 +38,8 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphGetOutputValue") @inline(__always) @inlinable public static func outputValue() -> Swift.UnsafePointer? - #endif @_silgen_name("AGGraphSetOutputValue") @inline(__always) @inlinable public static func setOutputValue(_ value: Swift.UnsafePointer) } @@ -51,9 +49,7 @@ extension AttributeGraph.Graph { } } extension AttributeGraph.Graph { - #if compiler(>=5.3) && $NonescapableTypes public func archiveJSON(name: Swift.String?) - #endif } extension AttributeGraph.Subgraph { public typealias Flags = AttributeGraph.AnyAttribute.Flags @@ -214,16 +210,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public func valueAndFlags(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, flags: AttributeGraph.AGChangedValueFlags) public func changedValue(of input: AttributeGraph.Attribute, options: AttributeGraph.AGValueOptions = []) -> (value: V, changed: Swift.Bool) public func update(body: () -> Swift.Void) @@ -236,16 +228,12 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public subscript(attribute: AttributeGraph.Attribute) -> V { unsafeAddress } - #if compiler(>=5.3) && $NonescapableTypes public subscript(weakAttribute: AttributeGraph.WeakAttribute) -> V? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(optionalAttribute: AttributeGraph.OptionalAttribute) -> V? { get } - #endif public var value: Value { unsafeAddress nonmutating set @@ -267,40 +255,26 @@ public func withUnsafeMutablePointerToEnumCase(of value: Swift.UnsafeMutableP public init(base: AttributeGraph.AnyWeakAttribute) public init() public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif } extension AttributeGraph.WeakAttribute : Swift.Hashable { public static func == (a: AttributeGraph.WeakAttribute, b: AttributeGraph.WeakAttribute) -> Swift.Bool @@ -315,17 +289,13 @@ extension AttributeGraph.WeakAttribute : Swift.CustomStringConvertible { } } extension AttributeGraph.AnyWeakAttribute { - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.WeakAttribute - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif } extension AttributeGraph.AnyWeakAttribute : Swift.Hashable { public static func == (lhs: AttributeGraph.AnyWeakAttribute, rhs: AttributeGraph.AnyWeakAttribute) -> Swift.Bool @@ -402,17 +372,13 @@ public protocol AttributeBodyVisitor { } public protocol StatefulRule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif mutating func updateValue() } extension AttributeGraph.StatefulRule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -433,17 +399,13 @@ extension AttributeGraph.StatefulRule { } public protocol Rule : AttributeGraph._AttributeBody { associatedtype Value - #if compiler(>=5.3) && $NonescapableTypes static var initialValue: Self.Value? { get } - #endif var value: Self.Value { get } } extension AttributeGraph.Rule { - #if compiler(>=5.3) && $NonescapableTypes public static var initialValue: Self.Value? { get } - #endif public static func _update(_ pointer: Swift.UnsafeMutableRawPointer, attribute _: AttributeGraph.AnyAttribute) public static func _updateDefault(_: Swift.UnsafeMutableRawPointer) } @@ -456,15 +418,9 @@ extension AttributeGraph.Rule { } } extension AttributeGraph.Rule where Self : Swift.Hashable { - #if compiler(>=5.3) && $NonescapableTypes public func cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value - #endif - #if compiler(>=5.3) && $NonescapableTypes public func cachedValueIfExists(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?) -> Self.Value? - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func _cachedValue(options: AttributeGraph.AGCachedValueOptions = [], owner: AttributeGraph.AnyAttribute?, hashValue: Swift.Int, bodyPtr: Swift.UnsafeRawPointer, update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) -> Swift.UnsafePointer - #endif } @frozen @propertyWrapper @dynamicMemberLookup public struct Attribute { public var identifier: AttributeGraph.AnyAttribute @@ -472,9 +428,7 @@ extension AttributeGraph.Rule where Self : Swift.Hashable { public init(_ attribute: AttributeGraph.Attribute) public init(value: Value) public init(type _: Value.Type) - #if compiler(>=5.3) && $NonescapableTypes public init(body: Swift.UnsafePointer, value: Swift.UnsafePointer?, flags: AttributeGraph._AttributeType.Flags = [], update: () -> (Swift.UnsafeMutableRawPointer, AttributeGraph.AnyAttribute) -> Swift.Void) where Body : AttributeGraph._AttributeBody - #endif public var wrappedValue: Value { unsafeAddress nonmutating set @@ -546,10 +500,8 @@ extension AttributeGraph.Attribute { public init(_ rule: R) where Value == R.Value, R : AttributeGraph.Rule public init(_ rule: R) where Value == R.Value, R : AttributeGraph.StatefulRule } -#if compiler(>=5.3) && $NonescapableTypes @_silgen_name("AGGraphCreateAttribute") @inline(__always) @inlinable internal func AGGraphCreateAttribute(index: Swift.Int, body: Swift.UnsafeRawPointer, value: Swift.UnsafeRawPointer?) -> AttributeGraph.AnyAttribute -#endif @_silgen_name("AGGraphGetValue") @inline(__always) @inlinable internal func AGGraphGetValue(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGValueOptions = [], type: Value.Type = Value.self) -> AttributeGraph.AGValue @_silgen_name("AGGraphSetValue") @@ -602,11 +554,9 @@ extension Swift.UnsafeMutablePointer { extension AttributeGraph.AnyAttribute { public init(_ attribute: AttributeGraph.Attribute) public func unsafeCast(to _: Value.Type) -> AttributeGraph.Attribute - #if compiler(>=5.3) && $NonescapableTypes public static var current: AttributeGraph.AnyAttribute? { get } - #endif public func unsafeOffset(at offset: Swift.Int) -> AttributeGraph.AnyAttribute public func setFlags(_ newFlags: AttributeGraph.AnyAttribute.Flags, mask: AttributeGraph.AnyAttribute.Flags) public func addInput(_ attribute: AttributeGraph.AnyAttribute, options: AttributeGraph.AGInputOptions = [], token: Swift.Int) @@ -623,12 +573,10 @@ extension AttributeGraph.AnyAttribute { public var valueType: any Any.Type { get } - #if compiler(>=5.3) && $NonescapableTypes public var indirectDependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif } extension AttributeGraph.AnyAttribute : Swift.CustomStringConvertible { @inlinable public var description: Swift.String { @@ -643,12 +591,10 @@ public typealias AttributeUpdateBlock = () -> (Swift.UnsafeMutableRawPointer, At get nonmutating set } - #if compiler(>=5.3) && $NonescapableTypes public var dependency: AttributeGraph.AnyAttribute? { get nonmutating set } - #endif public var value: Value { get nonmutating set @@ -678,22 +624,16 @@ extension AttributeGraph.IndirectAttribute : Swift.Hashable { public var identifier: AttributeGraph.AnyAttribute public init() public init(_ attribute: AttributeGraph.AnyAttribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.AnyAttribute?) - #endif public init(_ attribute: AttributeGraph.OptionalAttribute) public static var current: AttributeGraph.AnyOptionalAttribute { get } - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.AnyAttribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.AnyAttribute) -> Value) -> Value? - #endif public func unsafeCast(to _: Value.Type) -> AttributeGraph.OptionalAttribute } extension AttributeGraph.AnyOptionalAttribute : Swift.Hashable { @@ -713,44 +653,28 @@ extension AttributeGraph.AnyOptionalAttribute : Swift.CustomStringConvertible { public init() public init(base: AttributeGraph.AnyOptionalAttribute) public init(_ attribute: AttributeGraph.Attribute) - #if compiler(>=5.3) && $NonescapableTypes public init(_ attribute: AttributeGraph.Attribute?) - #endif public init(_ weakAttribute: AttributeGraph.WeakAttribute) - #if compiler(>=5.3) && $NonescapableTypes public var attribute: AttributeGraph.Attribute? { get set } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public func changedValue(options: AttributeGraph.AGValueOptions = []) -> (value: Value, changed: Swift.Bool)? - #endif - #if compiler(>=5.3) && $NonescapableTypes public func map(_ body: (AttributeGraph.Attribute) -> V) -> V? - #endif - #if compiler(>=5.3) && $NonescapableTypes public var wrappedValue: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var projectedValue: AttributeGraph.Attribute? { get set _modify } - #endif - #if compiler(>=5.3) && $NonescapableTypes public subscript(dynamicMember keyPath: Swift.KeyPath) -> AttributeGraph.Attribute? { get } - #endif } extension AttributeGraph.OptionalAttribute : Swift.Hashable { public static func == (a: AttributeGraph.OptionalAttribute, b: AttributeGraph.OptionalAttribute) -> Swift.Bool diff --git a/AG/generate_swiftinterface.sh b/AG/generate_swiftinterface.sh index 61b72b5..2a14639 100755 --- a/AG/generate_swiftinterface.sh +++ b/AG/generate_swiftinterface.sh @@ -40,7 +40,7 @@ cleanup() { trap cleanup EXIT # Verify Swift compiler version matches the expected version for this framework -EXPECTED_SWIFT_VERSION="6.2" +EXPECTED_SWIFT_VERSION="6.3" SWIFT_VERSION=$(xcrun swiftc --version 2>&1 | grep -o 'Swift version [0-9]*\.[0-9]*' | head -1 | awk '{print $3}') if [ "${SWIFT_VERSION}" != "${EXPECTED_SWIFT_VERSION}" ]; then echo "Error: expected Swift ${EXPECTED_SWIFT_VERSION} but found Swift ${SWIFT_VERSION}" diff --git a/AG/update.sh b/AG/update.sh index 3ecd9ee..d0e0e87 100755 --- a/AG/update.sh +++ b/AG/update.sh @@ -33,9 +33,9 @@ generate_swiftinterface_header() { local target="$1" local result="" result+="// swift-interface-format-version: 1.0\n" - result+="// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29)\n" + result+="// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)\n" result+="// swift-module-flags: -target $target -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name AttributeGraph\n" - result+="// swift-module-flags-ignorable: -interface-compiler-version 6.2" + result+="// swift-module-flags-ignorable: -interface-compiler-version 6.3.3" echo -e $result } diff --git a/GF/2025/Gestures.xcframework/ios-arm64-x86_64-simulator/Gestures.framework/Modules/Gestures.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/GF/2025/Gestures.xcframework/ios-arm64-x86_64-simulator/Gestures.framework/Modules/Gestures.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 42b5b77..5b2e178 100644 --- a/GF/2025/Gestures.xcframework/ios-arm64-x86_64-simulator/Gestures.framework/Modules/Gestures.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/GF/2025/Gestures.xcframework/ios-arm64-x86_64-simulator/Gestures.framework/Modules/Gestures.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64-apple-ios26.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name Gestures -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 public import Dispatch @_exported public import Gestures public import Swift @@ -25,12 +25,8 @@ public struct GestureTrait : Swift.Hashable, Swift.Identifiable, Swift.Sendable public var id: Gestures.GestureTraitID public var attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] public init(id: Gestures.GestureTraitID, attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] = [:]) - #if compiler(>=5.3) && $NonescapableTypes public static func tap(tapCount: Swift.Int? = nil, pointCount: Swift.Int? = nil) -> Gestures.GestureTrait - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func longPress(pointCount: Swift.Int? = nil, minimumDuration: Swift.Duration? = nil, maximumMovement: Swift.Double? = nil) -> Gestures.GestureTrait - #endif public static func pan() -> Gestures.GestureTrait public struct AttributeKey : Swift.Hashable, Swift.Sendable, Swift.CustomStringConvertible { public let rawValue: Swift.Int @@ -171,9 +167,7 @@ public struct GestureRelation : Swift.Equatable, Swift.Sendable { public var direction: Gestures.GestureRelationDirection public var role: Gestures.GestureRelationRole? public var target: Gestures.GestureNodeMatcher - #if compiler(>=5.3) && $NonescapableTypes public init(type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, role: Gestures.GestureRelationRole?, target: Gestures.GestureNodeMatcher) - #endif public static func == (a: Gestures.GestureRelation, b: Gestures.GestureRelation) -> Swift.Bool } extension Swift.Array where Element == Gestures.GestureRelation { @@ -214,16 +208,12 @@ extension Gestures.GesturePhase { public var isRecognized: Swift.Bool { get } - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var failureReason: Gestures.GestureFailureReason? { get } - #endif public func mapValue(_ transform: (Value) -> T) -> Gestures.GesturePhase where T : Swift.Sendable } extension Gestures.GesturePhase : Swift.CustomStringConvertible { @@ -252,11 +242,9 @@ public enum GestureOutput : Swift.Sendable where Value : Swift.Sendable { case finalValue(Value, metadata: Gestures.GestureOutputMetadata?) } extension Gestures.GestureOutput { - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif public var isEmpty: Swift.Bool { get } @@ -277,9 +265,7 @@ public enum GestureOutputEmptyReason : Swift.Hashable, Swift.Sendable { public struct GestureOutputMetadata : Swift.Sendable { } public protocol GestureNodeContainer : AnyObject, Swift.Sendable { - #if compiler(>=5.3) && $NonescapableTypes func index(of node: Gestures.AnyGestureNode) -> Swift.Int? - #endif func isDescendant(of container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool func isDeeper(than container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool } @@ -300,9 +286,7 @@ public protocol GestureNodeDelegate : AnyObject, Swift.Sendable { func gestureNodeShouldActivate(_ node: Gestures.GestureNode) -> Swift.Bool func gestureNode(_ node: Gestures.GestureNode, didEnqueuePhase phase: Gestures.GesturePhase) func gestureNode(_ node: Gestures.GestureNode, didUpdatePhase newPhase: Gestures.GesturePhase, oldPhase: Gestures.GesturePhase) - #if compiler(>=5.3) && $NonescapableTypes func gestureNode(_ node: Gestures.GestureNode, roleForRelationType type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, relatedNode: Gestures.AnyGestureNode) -> Gestures.GestureRelationRole? - #endif } public struct GestureNodeOptions : Swift.OptionSet, Swift.Sendable { public let rawValue: Swift.Int @@ -355,20 +339,16 @@ extension Gestures.AnyGestureNode : Swift.Comparable { } @_inheritsConvenienceInitializers public class GestureNode : Gestures.AnyGestureNode, @unchecked Swift.Sendable where Value : Swift.Sendable { weak public var delegate: (any Gestures.GestureNodeDelegate)? - #if compiler(>=5.3) && $NonescapableTypes public init(traits: Gestures.GestureTraitCollection?, tag: Gestures.GestureTag?, relations: [Gestures.GestureRelation]) - #endif convenience public init() override public var options: Gestures.GestureNodeOptions { get set } - #if compiler(>=5.3) && $NonescapableTypes override public var container: (any Gestures.GestureNodeContainer)? { get set } - #endif public var phase: Gestures.GesturePhase { get } @@ -391,9 +371,7 @@ public protocol GestureComponent : Swift.Sendable { associatedtype Value : Swift.Sendable mutating func update(context: Gestures.GestureComponentContext) throws -> Gestures.GestureOutput mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes mutating func traits() -> Gestures.GestureTraitCollection? - #endif mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } extension Gestures.CompositeGestureComponent { @@ -427,19 +405,15 @@ public protocol CompositeGestureComponent : Gestures.GestureComponent { } extension Gestures.CompositeGestureComponent { public mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes public mutating func traits() -> Gestures.GestureTraitCollection? - #endif public mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } @_hasMissingDesignatedInitializers final public class GestureComponentController : Gestures.AnyGestureComponentController, @unchecked Swift.Sendable where Component : Gestures.GestureComponent { public init(component: Component, timeScheduler: any Gestures.TimeScheduler) convenience public init(component: Component) - #if compiler(>=5.3) && $NonescapableTypes override final public var traits: Gestures.GestureTraitCollection? { get } - #endif override final public var timeSource: any Gestures.TimeSource { get } @@ -450,11 +424,9 @@ extension Gestures.CompositeGestureComponent { } @_hasMissingDesignatedInitializers open class AnyGestureComponentController : @unchecked Swift.Sendable { weak open var node: Gestures.AnyGestureNode? - #if compiler(>=5.3) && $NonescapableTypes open var traits: Gestures.GestureTraitCollection? { get } - #endif open var timeSource: any Gestures.TimeSource { get } @@ -498,9 +470,7 @@ public struct GestureUpdateDriverToken : Swift.Hashable, Swift.Sendable { } } public protocol TimeScheduler : AnyObject, Gestures.TimeSource { - #if compiler(>=5.3) && $NonescapableTypes func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)?) -> Gestures.TimeSchedulerToken - #endif func cancel(token: Gestures.TimeSchedulerToken) } public struct TimeSchedulerToken : Swift.Hashable, Swift.Sendable { @@ -519,9 +489,7 @@ final public class DispatchTimeScheduler : @unchecked Swift.Sendable, Gestures.T final public var timestamp: Gestures.Timestamp { get } - #if compiler(>=5.3) && $NonescapableTypes final public func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)? = nil) -> Gestures.TimeSchedulerToken - #endif final public func cancel(token: Gestures.TimeSchedulerToken) @objc deinit } @@ -646,8 +614,6 @@ extension Gestures.GFGestureRelationRole : Swift.CustomStringConvertible { get } } -extension CoreFoundation.CGPoint : Swift.Sendable {} -extension CoreFoundation.CGVector : Swift.Sendable {} extension Gestures.GestureTrait : Swift.CustomStringConvertible {} extension Gestures.GestureTrait : Swift.CustomDebugStringConvertible {} extension Gestures.GestureTraitCollection : Swift.CustomStringConvertible {} diff --git a/GF/2025/Gestures.xcframework/ios-arm64-x86_64-simulator/Gestures.framework/Modules/Gestures.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/GF/2025/Gestures.xcframework/ios-arm64-x86_64-simulator/Gestures.framework/Modules/Gestures.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index d5bde8e..da21ec3 100644 --- a/GF/2025/Gestures.xcframework/ios-arm64-x86_64-simulator/Gestures.framework/Modules/Gestures.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/GF/2025/Gestures.xcframework/ios-arm64-x86_64-simulator/Gestures.framework/Modules/Gestures.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target x86_64-apple-ios26.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name Gestures -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 public import Dispatch @_exported public import Gestures public import Swift @@ -25,12 +25,8 @@ public struct GestureTrait : Swift.Hashable, Swift.Identifiable, Swift.Sendable public var id: Gestures.GestureTraitID public var attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] public init(id: Gestures.GestureTraitID, attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] = [:]) - #if compiler(>=5.3) && $NonescapableTypes public static func tap(tapCount: Swift.Int? = nil, pointCount: Swift.Int? = nil) -> Gestures.GestureTrait - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func longPress(pointCount: Swift.Int? = nil, minimumDuration: Swift.Duration? = nil, maximumMovement: Swift.Double? = nil) -> Gestures.GestureTrait - #endif public static func pan() -> Gestures.GestureTrait public struct AttributeKey : Swift.Hashable, Swift.Sendable, Swift.CustomStringConvertible { public let rawValue: Swift.Int @@ -171,9 +167,7 @@ public struct GestureRelation : Swift.Equatable, Swift.Sendable { public var direction: Gestures.GestureRelationDirection public var role: Gestures.GestureRelationRole? public var target: Gestures.GestureNodeMatcher - #if compiler(>=5.3) && $NonescapableTypes public init(type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, role: Gestures.GestureRelationRole?, target: Gestures.GestureNodeMatcher) - #endif public static func == (a: Gestures.GestureRelation, b: Gestures.GestureRelation) -> Swift.Bool } extension Swift.Array where Element == Gestures.GestureRelation { @@ -214,16 +208,12 @@ extension Gestures.GesturePhase { public var isRecognized: Swift.Bool { get } - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var failureReason: Gestures.GestureFailureReason? { get } - #endif public func mapValue(_ transform: (Value) -> T) -> Gestures.GesturePhase where T : Swift.Sendable } extension Gestures.GesturePhase : Swift.CustomStringConvertible { @@ -252,11 +242,9 @@ public enum GestureOutput : Swift.Sendable where Value : Swift.Sendable { case finalValue(Value, metadata: Gestures.GestureOutputMetadata?) } extension Gestures.GestureOutput { - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif public var isEmpty: Swift.Bool { get } @@ -277,9 +265,7 @@ public enum GestureOutputEmptyReason : Swift.Hashable, Swift.Sendable { public struct GestureOutputMetadata : Swift.Sendable { } public protocol GestureNodeContainer : AnyObject, Swift.Sendable { - #if compiler(>=5.3) && $NonescapableTypes func index(of node: Gestures.AnyGestureNode) -> Swift.Int? - #endif func isDescendant(of container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool func isDeeper(than container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool } @@ -300,9 +286,7 @@ public protocol GestureNodeDelegate : AnyObject, Swift.Sendable { func gestureNodeShouldActivate(_ node: Gestures.GestureNode) -> Swift.Bool func gestureNode(_ node: Gestures.GestureNode, didEnqueuePhase phase: Gestures.GesturePhase) func gestureNode(_ node: Gestures.GestureNode, didUpdatePhase newPhase: Gestures.GesturePhase, oldPhase: Gestures.GesturePhase) - #if compiler(>=5.3) && $NonescapableTypes func gestureNode(_ node: Gestures.GestureNode, roleForRelationType type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, relatedNode: Gestures.AnyGestureNode) -> Gestures.GestureRelationRole? - #endif } public struct GestureNodeOptions : Swift.OptionSet, Swift.Sendable { public let rawValue: Swift.Int @@ -355,20 +339,16 @@ extension Gestures.AnyGestureNode : Swift.Comparable { } @_inheritsConvenienceInitializers public class GestureNode : Gestures.AnyGestureNode, @unchecked Swift.Sendable where Value : Swift.Sendable { weak public var delegate: (any Gestures.GestureNodeDelegate)? - #if compiler(>=5.3) && $NonescapableTypes public init(traits: Gestures.GestureTraitCollection?, tag: Gestures.GestureTag?, relations: [Gestures.GestureRelation]) - #endif convenience public init() override public var options: Gestures.GestureNodeOptions { get set } - #if compiler(>=5.3) && $NonescapableTypes override public var container: (any Gestures.GestureNodeContainer)? { get set } - #endif public var phase: Gestures.GesturePhase { get } @@ -391,9 +371,7 @@ public protocol GestureComponent : Swift.Sendable { associatedtype Value : Swift.Sendable mutating func update(context: Gestures.GestureComponentContext) throws -> Gestures.GestureOutput mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes mutating func traits() -> Gestures.GestureTraitCollection? - #endif mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } extension Gestures.CompositeGestureComponent { @@ -427,19 +405,15 @@ public protocol CompositeGestureComponent : Gestures.GestureComponent { } extension Gestures.CompositeGestureComponent { public mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes public mutating func traits() -> Gestures.GestureTraitCollection? - #endif public mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } @_hasMissingDesignatedInitializers final public class GestureComponentController : Gestures.AnyGestureComponentController, @unchecked Swift.Sendable where Component : Gestures.GestureComponent { public init(component: Component, timeScheduler: any Gestures.TimeScheduler) convenience public init(component: Component) - #if compiler(>=5.3) && $NonescapableTypes override final public var traits: Gestures.GestureTraitCollection? { get } - #endif override final public var timeSource: any Gestures.TimeSource { get } @@ -450,11 +424,9 @@ extension Gestures.CompositeGestureComponent { } @_hasMissingDesignatedInitializers open class AnyGestureComponentController : @unchecked Swift.Sendable { weak open var node: Gestures.AnyGestureNode? - #if compiler(>=5.3) && $NonescapableTypes open var traits: Gestures.GestureTraitCollection? { get } - #endif open var timeSource: any Gestures.TimeSource { get } @@ -498,9 +470,7 @@ public struct GestureUpdateDriverToken : Swift.Hashable, Swift.Sendable { } } public protocol TimeScheduler : AnyObject, Gestures.TimeSource { - #if compiler(>=5.3) && $NonescapableTypes func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)?) -> Gestures.TimeSchedulerToken - #endif func cancel(token: Gestures.TimeSchedulerToken) } public struct TimeSchedulerToken : Swift.Hashable, Swift.Sendable { @@ -519,9 +489,7 @@ final public class DispatchTimeScheduler : @unchecked Swift.Sendable, Gestures.T final public var timestamp: Gestures.Timestamp { get } - #if compiler(>=5.3) && $NonescapableTypes final public func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)? = nil) -> Gestures.TimeSchedulerToken - #endif final public func cancel(token: Gestures.TimeSchedulerToken) @objc deinit } @@ -646,8 +614,6 @@ extension Gestures.GFGestureRelationRole : Swift.CustomStringConvertible { get } } -extension CoreFoundation.CGPoint : Swift.Sendable {} -extension CoreFoundation.CGVector : Swift.Sendable {} extension Gestures.GestureTrait : Swift.CustomStringConvertible {} extension Gestures.GestureTrait : Swift.CustomDebugStringConvertible {} extension Gestures.GestureTraitCollection : Swift.CustomStringConvertible {} diff --git a/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/arm64-apple-macos.swiftinterface b/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/arm64-apple-macos.swiftinterface index 845c81c..6600c2f 100644 --- a/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/arm64-apple-macos.swiftinterface +++ b/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/arm64-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64-apple-macos26.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name Gestures -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 public import Dispatch @_exported public import Gestures public import Swift @@ -25,12 +25,8 @@ public struct GestureTrait : Swift.Hashable, Swift.Identifiable, Swift.Sendable public var id: Gestures.GestureTraitID public var attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] public init(id: Gestures.GestureTraitID, attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] = [:]) - #if compiler(>=5.3) && $NonescapableTypes public static func tap(tapCount: Swift.Int? = nil, pointCount: Swift.Int? = nil) -> Gestures.GestureTrait - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func longPress(pointCount: Swift.Int? = nil, minimumDuration: Swift.Duration? = nil, maximumMovement: Swift.Double? = nil) -> Gestures.GestureTrait - #endif public static func pan() -> Gestures.GestureTrait public struct AttributeKey : Swift.Hashable, Swift.Sendable, Swift.CustomStringConvertible { public let rawValue: Swift.Int @@ -171,9 +167,7 @@ public struct GestureRelation : Swift.Equatable, Swift.Sendable { public var direction: Gestures.GestureRelationDirection public var role: Gestures.GestureRelationRole? public var target: Gestures.GestureNodeMatcher - #if compiler(>=5.3) && $NonescapableTypes public init(type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, role: Gestures.GestureRelationRole?, target: Gestures.GestureNodeMatcher) - #endif public static func == (a: Gestures.GestureRelation, b: Gestures.GestureRelation) -> Swift.Bool } extension Swift.Array where Element == Gestures.GestureRelation { @@ -214,16 +208,12 @@ extension Gestures.GesturePhase { public var isRecognized: Swift.Bool { get } - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var failureReason: Gestures.GestureFailureReason? { get } - #endif public func mapValue(_ transform: (Value) -> T) -> Gestures.GesturePhase where T : Swift.Sendable } extension Gestures.GesturePhase : Swift.CustomStringConvertible { @@ -252,11 +242,9 @@ public enum GestureOutput : Swift.Sendable where Value : Swift.Sendable { case finalValue(Value, metadata: Gestures.GestureOutputMetadata?) } extension Gestures.GestureOutput { - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif public var isEmpty: Swift.Bool { get } @@ -277,9 +265,7 @@ public enum GestureOutputEmptyReason : Swift.Hashable, Swift.Sendable { public struct GestureOutputMetadata : Swift.Sendable { } public protocol GestureNodeContainer : AnyObject, Swift.Sendable { - #if compiler(>=5.3) && $NonescapableTypes func index(of node: Gestures.AnyGestureNode) -> Swift.Int? - #endif func isDescendant(of container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool func isDeeper(than container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool } @@ -300,9 +286,7 @@ public protocol GestureNodeDelegate : AnyObject, Swift.Sendable { func gestureNodeShouldActivate(_ node: Gestures.GestureNode) -> Swift.Bool func gestureNode(_ node: Gestures.GestureNode, didEnqueuePhase phase: Gestures.GesturePhase) func gestureNode(_ node: Gestures.GestureNode, didUpdatePhase newPhase: Gestures.GesturePhase, oldPhase: Gestures.GesturePhase) - #if compiler(>=5.3) && $NonescapableTypes func gestureNode(_ node: Gestures.GestureNode, roleForRelationType type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, relatedNode: Gestures.AnyGestureNode) -> Gestures.GestureRelationRole? - #endif } public struct GestureNodeOptions : Swift.OptionSet, Swift.Sendable { public let rawValue: Swift.Int @@ -355,20 +339,16 @@ extension Gestures.AnyGestureNode : Swift.Comparable { } @_inheritsConvenienceInitializers public class GestureNode : Gestures.AnyGestureNode, @unchecked Swift.Sendable where Value : Swift.Sendable { weak public var delegate: (any Gestures.GestureNodeDelegate)? - #if compiler(>=5.3) && $NonescapableTypes public init(traits: Gestures.GestureTraitCollection?, tag: Gestures.GestureTag?, relations: [Gestures.GestureRelation]) - #endif convenience public init() override public var options: Gestures.GestureNodeOptions { get set } - #if compiler(>=5.3) && $NonescapableTypes override public var container: (any Gestures.GestureNodeContainer)? { get set } - #endif public var phase: Gestures.GesturePhase { get } @@ -391,9 +371,7 @@ public protocol GestureComponent : Swift.Sendable { associatedtype Value : Swift.Sendable mutating func update(context: Gestures.GestureComponentContext) throws -> Gestures.GestureOutput mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes mutating func traits() -> Gestures.GestureTraitCollection? - #endif mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } extension Gestures.CompositeGestureComponent { @@ -427,19 +405,15 @@ public protocol CompositeGestureComponent : Gestures.GestureComponent { } extension Gestures.CompositeGestureComponent { public mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes public mutating func traits() -> Gestures.GestureTraitCollection? - #endif public mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } @_hasMissingDesignatedInitializers final public class GestureComponentController : Gestures.AnyGestureComponentController, @unchecked Swift.Sendable where Component : Gestures.GestureComponent { public init(component: Component, timeScheduler: any Gestures.TimeScheduler) convenience public init(component: Component) - #if compiler(>=5.3) && $NonescapableTypes override final public var traits: Gestures.GestureTraitCollection? { get } - #endif override final public var timeSource: any Gestures.TimeSource { get } @@ -450,11 +424,9 @@ extension Gestures.CompositeGestureComponent { } @_hasMissingDesignatedInitializers open class AnyGestureComponentController : @unchecked Swift.Sendable { weak open var node: Gestures.AnyGestureNode? - #if compiler(>=5.3) && $NonescapableTypes open var traits: Gestures.GestureTraitCollection? { get } - #endif open var timeSource: any Gestures.TimeSource { get } @@ -498,9 +470,7 @@ public struct GestureUpdateDriverToken : Swift.Hashable, Swift.Sendable { } } public protocol TimeScheduler : AnyObject, Gestures.TimeSource { - #if compiler(>=5.3) && $NonescapableTypes func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)?) -> Gestures.TimeSchedulerToken - #endif func cancel(token: Gestures.TimeSchedulerToken) } public struct TimeSchedulerToken : Swift.Hashable, Swift.Sendable { @@ -519,9 +489,7 @@ final public class DispatchTimeScheduler : @unchecked Swift.Sendable, Gestures.T final public var timestamp: Gestures.Timestamp { get } - #if compiler(>=5.3) && $NonescapableTypes final public func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)? = nil) -> Gestures.TimeSchedulerToken - #endif final public func cancel(token: Gestures.TimeSchedulerToken) @objc deinit } @@ -646,8 +614,6 @@ extension Gestures.GFGestureRelationRole : Swift.CustomStringConvertible { get } } -extension CoreFoundation.CGPoint : Swift.Sendable {} -extension CoreFoundation.CGVector : Swift.Sendable {} extension Gestures.GestureTrait : Swift.CustomStringConvertible {} extension Gestures.GestureTrait : Swift.CustomDebugStringConvertible {} extension Gestures.GestureTraitCollection : Swift.CustomStringConvertible {} diff --git a/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/arm64e-apple-macos.swiftinterface b/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/arm64e-apple-macos.swiftinterface index 2702b83..11d2f33 100644 --- a/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/arm64e-apple-macos.swiftinterface +++ b/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/arm64e-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target arm64e-apple-macos26.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name Gestures -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 public import Dispatch @_exported public import Gestures public import Swift @@ -25,12 +25,8 @@ public struct GestureTrait : Swift.Hashable, Swift.Identifiable, Swift.Sendable public var id: Gestures.GestureTraitID public var attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] public init(id: Gestures.GestureTraitID, attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] = [:]) - #if compiler(>=5.3) && $NonescapableTypes public static func tap(tapCount: Swift.Int? = nil, pointCount: Swift.Int? = nil) -> Gestures.GestureTrait - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func longPress(pointCount: Swift.Int? = nil, minimumDuration: Swift.Duration? = nil, maximumMovement: Swift.Double? = nil) -> Gestures.GestureTrait - #endif public static func pan() -> Gestures.GestureTrait public struct AttributeKey : Swift.Hashable, Swift.Sendable, Swift.CustomStringConvertible { public let rawValue: Swift.Int @@ -171,9 +167,7 @@ public struct GestureRelation : Swift.Equatable, Swift.Sendable { public var direction: Gestures.GestureRelationDirection public var role: Gestures.GestureRelationRole? public var target: Gestures.GestureNodeMatcher - #if compiler(>=5.3) && $NonescapableTypes public init(type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, role: Gestures.GestureRelationRole?, target: Gestures.GestureNodeMatcher) - #endif public static func == (a: Gestures.GestureRelation, b: Gestures.GestureRelation) -> Swift.Bool } extension Swift.Array where Element == Gestures.GestureRelation { @@ -214,16 +208,12 @@ extension Gestures.GesturePhase { public var isRecognized: Swift.Bool { get } - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var failureReason: Gestures.GestureFailureReason? { get } - #endif public func mapValue(_ transform: (Value) -> T) -> Gestures.GesturePhase where T : Swift.Sendable } extension Gestures.GesturePhase : Swift.CustomStringConvertible { @@ -252,11 +242,9 @@ public enum GestureOutput : Swift.Sendable where Value : Swift.Sendable { case finalValue(Value, metadata: Gestures.GestureOutputMetadata?) } extension Gestures.GestureOutput { - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif public var isEmpty: Swift.Bool { get } @@ -277,9 +265,7 @@ public enum GestureOutputEmptyReason : Swift.Hashable, Swift.Sendable { public struct GestureOutputMetadata : Swift.Sendable { } public protocol GestureNodeContainer : AnyObject, Swift.Sendable { - #if compiler(>=5.3) && $NonescapableTypes func index(of node: Gestures.AnyGestureNode) -> Swift.Int? - #endif func isDescendant(of container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool func isDeeper(than container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool } @@ -300,9 +286,7 @@ public protocol GestureNodeDelegate : AnyObject, Swift.Sendable { func gestureNodeShouldActivate(_ node: Gestures.GestureNode) -> Swift.Bool func gestureNode(_ node: Gestures.GestureNode, didEnqueuePhase phase: Gestures.GesturePhase) func gestureNode(_ node: Gestures.GestureNode, didUpdatePhase newPhase: Gestures.GesturePhase, oldPhase: Gestures.GesturePhase) - #if compiler(>=5.3) && $NonescapableTypes func gestureNode(_ node: Gestures.GestureNode, roleForRelationType type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, relatedNode: Gestures.AnyGestureNode) -> Gestures.GestureRelationRole? - #endif } public struct GestureNodeOptions : Swift.OptionSet, Swift.Sendable { public let rawValue: Swift.Int @@ -355,20 +339,16 @@ extension Gestures.AnyGestureNode : Swift.Comparable { } @_inheritsConvenienceInitializers public class GestureNode : Gestures.AnyGestureNode, @unchecked Swift.Sendable where Value : Swift.Sendable { weak public var delegate: (any Gestures.GestureNodeDelegate)? - #if compiler(>=5.3) && $NonescapableTypes public init(traits: Gestures.GestureTraitCollection?, tag: Gestures.GestureTag?, relations: [Gestures.GestureRelation]) - #endif convenience public init() override public var options: Gestures.GestureNodeOptions { get set } - #if compiler(>=5.3) && $NonescapableTypes override public var container: (any Gestures.GestureNodeContainer)? { get set } - #endif public var phase: Gestures.GesturePhase { get } @@ -391,9 +371,7 @@ public protocol GestureComponent : Swift.Sendable { associatedtype Value : Swift.Sendable mutating func update(context: Gestures.GestureComponentContext) throws -> Gestures.GestureOutput mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes mutating func traits() -> Gestures.GestureTraitCollection? - #endif mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } extension Gestures.CompositeGestureComponent { @@ -427,19 +405,15 @@ public protocol CompositeGestureComponent : Gestures.GestureComponent { } extension Gestures.CompositeGestureComponent { public mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes public mutating func traits() -> Gestures.GestureTraitCollection? - #endif public mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } @_hasMissingDesignatedInitializers final public class GestureComponentController : Gestures.AnyGestureComponentController, @unchecked Swift.Sendable where Component : Gestures.GestureComponent { public init(component: Component, timeScheduler: any Gestures.TimeScheduler) convenience public init(component: Component) - #if compiler(>=5.3) && $NonescapableTypes override final public var traits: Gestures.GestureTraitCollection? { get } - #endif override final public var timeSource: any Gestures.TimeSource { get } @@ -450,11 +424,9 @@ extension Gestures.CompositeGestureComponent { } @_hasMissingDesignatedInitializers open class AnyGestureComponentController : @unchecked Swift.Sendable { weak open var node: Gestures.AnyGestureNode? - #if compiler(>=5.3) && $NonescapableTypes open var traits: Gestures.GestureTraitCollection? { get } - #endif open var timeSource: any Gestures.TimeSource { get } @@ -498,9 +470,7 @@ public struct GestureUpdateDriverToken : Swift.Hashable, Swift.Sendable { } } public protocol TimeScheduler : AnyObject, Gestures.TimeSource { - #if compiler(>=5.3) && $NonescapableTypes func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)?) -> Gestures.TimeSchedulerToken - #endif func cancel(token: Gestures.TimeSchedulerToken) } public struct TimeSchedulerToken : Swift.Hashable, Swift.Sendable { @@ -519,9 +489,7 @@ final public class DispatchTimeScheduler : @unchecked Swift.Sendable, Gestures.T final public var timestamp: Gestures.Timestamp { get } - #if compiler(>=5.3) && $NonescapableTypes final public func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)? = nil) -> Gestures.TimeSchedulerToken - #endif final public func cancel(token: Gestures.TimeSchedulerToken) @objc deinit } @@ -646,8 +614,6 @@ extension Gestures.GFGestureRelationRole : Swift.CustomStringConvertible { get } } -extension CoreFoundation.CGPoint : Swift.Sendable {} -extension CoreFoundation.CGVector : Swift.Sendable {} extension Gestures.GestureTrait : Swift.CustomStringConvertible {} extension Gestures.GestureTrait : Swift.CustomDebugStringConvertible {} extension Gestures.GestureTraitCollection : Swift.CustomStringConvertible {} diff --git a/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/x86_64-apple-macos.swiftinterface b/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/x86_64-apple-macos.swiftinterface index 1524686..c44bfe9 100644 --- a/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/x86_64-apple-macos.swiftinterface +++ b/GF/2025/Gestures.xcframework/macos-arm64e-arm64-x86_64/Gestures.framework/Versions/A/Modules/Gestures.swiftmodule/x86_64-apple-macos.swiftinterface @@ -1,7 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29) +// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101) // swift-module-flags: -target x86_64-apple-macos26.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name Gestures -// swift-module-flags-ignorable: -interface-compiler-version 6.2 +// swift-module-flags-ignorable: -interface-compiler-version 6.3.3 public import Dispatch @_exported public import Gestures public import Swift @@ -25,12 +25,8 @@ public struct GestureTrait : Swift.Hashable, Swift.Identifiable, Swift.Sendable public var id: Gestures.GestureTraitID public var attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] public init(id: Gestures.GestureTraitID, attributes: [Gestures.GestureTrait.AttributeKey : Gestures.GestureTrait.AttributeValue] = [:]) - #if compiler(>=5.3) && $NonescapableTypes public static func tap(tapCount: Swift.Int? = nil, pointCount: Swift.Int? = nil) -> Gestures.GestureTrait - #endif - #if compiler(>=5.3) && $NonescapableTypes public static func longPress(pointCount: Swift.Int? = nil, minimumDuration: Swift.Duration? = nil, maximumMovement: Swift.Double? = nil) -> Gestures.GestureTrait - #endif public static func pan() -> Gestures.GestureTrait public struct AttributeKey : Swift.Hashable, Swift.Sendable, Swift.CustomStringConvertible { public let rawValue: Swift.Int @@ -171,9 +167,7 @@ public struct GestureRelation : Swift.Equatable, Swift.Sendable { public var direction: Gestures.GestureRelationDirection public var role: Gestures.GestureRelationRole? public var target: Gestures.GestureNodeMatcher - #if compiler(>=5.3) && $NonescapableTypes public init(type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, role: Gestures.GestureRelationRole?, target: Gestures.GestureNodeMatcher) - #endif public static func == (a: Gestures.GestureRelation, b: Gestures.GestureRelation) -> Swift.Bool } extension Swift.Array where Element == Gestures.GestureRelation { @@ -214,16 +208,12 @@ extension Gestures.GesturePhase { public var isRecognized: Swift.Bool { get } - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif - #if compiler(>=5.3) && $NonescapableTypes public var failureReason: Gestures.GestureFailureReason? { get } - #endif public func mapValue(_ transform: (Value) -> T) -> Gestures.GesturePhase where T : Swift.Sendable } extension Gestures.GesturePhase : Swift.CustomStringConvertible { @@ -252,11 +242,9 @@ public enum GestureOutput : Swift.Sendable where Value : Swift.Sendable { case finalValue(Value, metadata: Gestures.GestureOutputMetadata?) } extension Gestures.GestureOutput { - #if compiler(>=5.3) && $NonescapableTypes public var value: Value? { get } - #endif public var isEmpty: Swift.Bool { get } @@ -277,9 +265,7 @@ public enum GestureOutputEmptyReason : Swift.Hashable, Swift.Sendable { public struct GestureOutputMetadata : Swift.Sendable { } public protocol GestureNodeContainer : AnyObject, Swift.Sendable { - #if compiler(>=5.3) && $NonescapableTypes func index(of node: Gestures.AnyGestureNode) -> Swift.Int? - #endif func isDescendant(of container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool func isDeeper(than container: any Gestures.GestureNodeContainer, referenceNode: Gestures.AnyGestureNode) -> Swift.Bool } @@ -300,9 +286,7 @@ public protocol GestureNodeDelegate : AnyObject, Swift.Sendable { func gestureNodeShouldActivate(_ node: Gestures.GestureNode) -> Swift.Bool func gestureNode(_ node: Gestures.GestureNode, didEnqueuePhase phase: Gestures.GesturePhase) func gestureNode(_ node: Gestures.GestureNode, didUpdatePhase newPhase: Gestures.GesturePhase, oldPhase: Gestures.GesturePhase) - #if compiler(>=5.3) && $NonescapableTypes func gestureNode(_ node: Gestures.GestureNode, roleForRelationType type: Gestures.GestureRelationType, direction: Gestures.GestureRelationDirection, relatedNode: Gestures.AnyGestureNode) -> Gestures.GestureRelationRole? - #endif } public struct GestureNodeOptions : Swift.OptionSet, Swift.Sendable { public let rawValue: Swift.Int @@ -355,20 +339,16 @@ extension Gestures.AnyGestureNode : Swift.Comparable { } @_inheritsConvenienceInitializers public class GestureNode : Gestures.AnyGestureNode, @unchecked Swift.Sendable where Value : Swift.Sendable { weak public var delegate: (any Gestures.GestureNodeDelegate)? - #if compiler(>=5.3) && $NonescapableTypes public init(traits: Gestures.GestureTraitCollection?, tag: Gestures.GestureTag?, relations: [Gestures.GestureRelation]) - #endif convenience public init() override public var options: Gestures.GestureNodeOptions { get set } - #if compiler(>=5.3) && $NonescapableTypes override public var container: (any Gestures.GestureNodeContainer)? { get set } - #endif public var phase: Gestures.GesturePhase { get } @@ -391,9 +371,7 @@ public protocol GestureComponent : Swift.Sendable { associatedtype Value : Swift.Sendable mutating func update(context: Gestures.GestureComponentContext) throws -> Gestures.GestureOutput mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes mutating func traits() -> Gestures.GestureTraitCollection? - #endif mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } extension Gestures.CompositeGestureComponent { @@ -427,19 +405,15 @@ public protocol CompositeGestureComponent : Gestures.GestureComponent { } extension Gestures.CompositeGestureComponent { public mutating func reset() - #if compiler(>=5.3) && $NonescapableTypes public mutating func traits() -> Gestures.GestureTraitCollection? - #endif public mutating func capacity(for eventType: E.Type) -> Swift.Int where E : Gestures.Event } @_hasMissingDesignatedInitializers final public class GestureComponentController : Gestures.AnyGestureComponentController, @unchecked Swift.Sendable where Component : Gestures.GestureComponent { public init(component: Component, timeScheduler: any Gestures.TimeScheduler) convenience public init(component: Component) - #if compiler(>=5.3) && $NonescapableTypes override final public var traits: Gestures.GestureTraitCollection? { get } - #endif override final public var timeSource: any Gestures.TimeSource { get } @@ -450,11 +424,9 @@ extension Gestures.CompositeGestureComponent { } @_hasMissingDesignatedInitializers open class AnyGestureComponentController : @unchecked Swift.Sendable { weak open var node: Gestures.AnyGestureNode? - #if compiler(>=5.3) && $NonescapableTypes open var traits: Gestures.GestureTraitCollection? { get } - #endif open var timeSource: any Gestures.TimeSource { get } @@ -498,9 +470,7 @@ public struct GestureUpdateDriverToken : Swift.Hashable, Swift.Sendable { } } public protocol TimeScheduler : AnyObject, Gestures.TimeSource { - #if compiler(>=5.3) && $NonescapableTypes func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)?) -> Gestures.TimeSchedulerToken - #endif func cancel(token: Gestures.TimeSchedulerToken) } public struct TimeSchedulerToken : Swift.Hashable, Swift.Sendable { @@ -519,9 +489,7 @@ final public class DispatchTimeScheduler : @unchecked Swift.Sendable, Gestures.T final public var timestamp: Gestures.Timestamp { get } - #if compiler(>=5.3) && $NonescapableTypes final public func schedule(after duration: Swift.Duration, handler: @escaping () -> Swift.Void, cancelHandler: (() -> Swift.Void)? = nil) -> Gestures.TimeSchedulerToken - #endif final public func cancel(token: Gestures.TimeSchedulerToken) @objc deinit } @@ -646,8 +614,6 @@ extension Gestures.GFGestureRelationRole : Swift.CustomStringConvertible { get } } -extension CoreFoundation.CGPoint : Swift.Sendable {} -extension CoreFoundation.CGVector : Swift.Sendable {} extension Gestures.GestureTrait : Swift.CustomStringConvertible {} extension Gestures.GestureTrait : Swift.CustomDebugStringConvertible {} extension Gestures.GestureTraitCollection : Swift.CustomStringConvertible {} diff --git a/GF/generate_swiftinterface.sh b/GF/generate_swiftinterface.sh index ed2476d..722ee87 100755 --- a/GF/generate_swiftinterface.sh +++ b/GF/generate_swiftinterface.sh @@ -40,7 +40,7 @@ cleanup() { trap cleanup EXIT # Verify Swift compiler version matches the expected version for this framework -EXPECTED_SWIFT_VERSION="6.2" # 2024 -> 6.1, 2025 -> 6.2 +EXPECTED_SWIFT_VERSION="6.3" SWIFT_VERSION=$(xcrun swiftc --version 2>&1 | grep -o 'Swift version [0-9]*\.[0-9]*' | head -1 | awk '{print $3}') if [ "${SWIFT_VERSION}" != "${EXPECTED_SWIFT_VERSION}" ]; then echo "Error: expected Swift ${EXPECTED_SWIFT_VERSION} but found Swift ${SWIFT_VERSION}" diff --git a/GF/update.sh b/GF/update.sh index 2ca148a..08051c4 100755 --- a/GF/update.sh +++ b/GF/update.sh @@ -21,9 +21,9 @@ generate_swiftinterface_header() { local target="$1" local result="" result+="// swift-interface-format-version: 1.0\n" - result+="// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.16.112 clang-1800.1.29)\n" + result+="// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)\n" result+="// swift-module-flags: -target $target -enable-objc-interop -enable-library-evolution -swift-version 5 -Osize -enable-upcoming-feature InternalImportsByDefault -enable-experimental-feature Extern -module-name Gestures\n" - result+="// swift-module-flags-ignorable: -interface-compiler-version 6.2" + result+="// swift-module-flags-ignorable: -interface-compiler-version 6.3.3" echo -e $result } From 6a8696015c4ba70cc5fd0e0fb4cd7fa47613255a Mon Sep 17 00:00:00 2001 From: Kyle Date: Sat, 15 Aug 2026 18:15:44 +0800 Subject: [PATCH 4/5] Update Tuist to 4.203.4 --- Example/mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/mise.toml b/Example/mise.toml index 8885d3b..fbafed4 100644 --- a/Example/mise.toml +++ b/Example/mise.toml @@ -1,5 +1,5 @@ [tools] -tuist = "4.193.0" +tuist = "4.203.4" [env] DARWINPRIVATEFRAMEWORKS_TARGET_RELEASE = "2025" From ddde6d22751d3b5101f1057ac6ccdc92478c9942 Mon Sep 17 00:00:00 2001 From: Kyle Date: Sat, 15 Aug 2026 19:04:57 +0800 Subject: [PATCH 5/5] Skip redundant xcbeautify installation --- .github/actions/build-example/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/build-example/action.yml b/.github/actions/build-example/action.yml index 20d1de8..b4c3dcb 100644 --- a/.github/actions/build-example/action.yml +++ b/.github/actions/build-example/action.yml @@ -32,7 +32,12 @@ runs: tuist generate --no-open - name: Install xcbeautify shell: bash - run: brew install xcbeautify + run: | + if command -v xcbeautify >/dev/null 2>&1; then + echo "xcbeautify is already installed" + else + brew install xcbeautify + fi - name: Build shell: bash run: |