Build Information
Successful build of Engine, reference 2.1.4 (e90d0a
), with Swift 6.1 for macOS (SPM) on 5 May 2025 17:59:37 UTC.
Swift 6 data race errors: 102
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
| `- note: add 'nonisolated' to 'makeIterator()' to make this instance method not isolated to the actor
80 | elements.makeIterator()
81 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:100:12: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
98 | }
99 |
100 | public subscript(position: Index) -> Element {
| |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
101 | elements[position]
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:104:17: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
102 | }
103 |
104 | public func index(after index: Index) -> Index {
| |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
105 | elements.index(after: index)
106 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:203:24: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
45 | }
46 |
47 | public var id: ID
| `- note: property declared here
48 | public var content: Content
49 |
:
196 | var list = ViewOutputList<Key.Content>(elements: [])
197 |
198 | public static func == (lhs: Value, rhs: Value) -> Bool {
| `- note: add '@MainActor' to make operator function '==' part of global actor 'MainActor'
199 | guard lhs.list.count == rhs.list.count else {
200 | return false
201 | }
202 | for (lhs, rhs) in zip(lhs.list, rhs.list) {
203 | if lhs.id != rhs.id || lhs.phase != rhs.phase {
| `- warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
204 | return false
205 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:203:34: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
45 | }
46 |
47 | public var id: ID
| `- note: property declared here
48 | public var content: Content
49 |
:
196 | var list = ViewOutputList<Key.Content>(elements: [])
197 |
198 | public static func == (lhs: Value, rhs: Value) -> Bool {
| `- note: add '@MainActor' to make operator function '==' part of global actor 'MainActor'
199 | guard lhs.list.count == rhs.list.count else {
200 | return false
201 | }
202 | for (lhs, rhs) in zip(lhs.list, rhs.list) {
203 | if lhs.id != rhs.id || lhs.phase != rhs.phase {
| `- warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
204 | return false
205 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/GraphInputs.swift:13:24: warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
11 |
12 | extension GraphInputsModifier {
13 | public static func _makeInputs(
| |- warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to '_makeInputs(modifier:inputs:)' to make this static method not isolated to the actor
14 | modifier: _GraphValue<Self>,
15 | inputs: inout _GraphInputs
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/GraphInputs.swift:13:24: warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
11 |
12 | extension GraphInputsModifier {
13 | public static func _makeInputs(
| |- warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to '_makeInputs(modifier:inputs:)' to make this static method not isolated to the actor
14 | modifier: _GraphValue<Self>,
15 | inputs: inout _GraphInputs
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:307:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewStylesBox' may have shared mutable state; this is an error in the Swift 6 language mode
305 |
306 | private struct ViewStylesKey: EnvironmentKey {
307 | static let defaultValue = ViewStylesBox()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewStylesBox' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
308 | }
309 |
:
315 | }
316 |
317 | private struct ViewStylesBox {
| `- note: consider making struct 'ViewStylesBox' conform to the 'Sendable' protocol
318 | private var storage: [UnsafeRawPointer: [AnyViewStyle]] = [:]
319 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:571:50: warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
569 | to: _GraphValue<AnyViewStyledView<StyledView, Content>>.self
570 | )
571 | outputs = Content._makeView(view: view[\.content], inputs: inputs)
| `- warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
572 | }
573 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:590:54: warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
588 | to: _GraphValue<AnyViewStyledView<StyledView, Content>>.self
589 | )
590 | outputs = Content._makeViewList(view: view[\.content], inputs: inputs)
| `- warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
591 | }
592 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:25:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct ZIndexTrait: ViewTraitKey {
24 | public typealias Value = Double
25 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | of: "7SwiftUI14ZIndexTraitKeyV"
27 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:32:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
30 | public struct LayoutPriorityTrait: ViewTraitKey {
31 | public typealias Value = Double
32 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | of: "7SwiftUI22LayoutPriorityTraitKeyV"
34 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:53:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
51 | public struct IsSectionHeaderTrait: ViewTraitKey {
52 | public typealias Value = Bool
53 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | of: "7SwiftUI23IsSectionHeaderTraitKeyV"
55 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:60:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
58 | public struct IsSectionFooterTrait: ViewTraitKey {
59 | public typealias Value = Bool
60 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | of: "7SwiftUI23IsSectionFooterTraitKeyV"
62 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:85:34: warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | var output: K.Value!
82 |
83 | mutating func visit<Key: _ViewTraitKey>(type: Key.Type) {
| `- note: add '@MainActor' to make instance method 'visit(type:)' part of global actor 'MainActor'
84 | if K.Value.self == Key.Value.self {
85 | output = subview.element[Key.self] as? K.Value
| `- warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
86 | } else if MemoryLayout<K.Value>.size == MemoryLayout<Key.Value>.size {
87 | output = unsafeBitCast(subview.element[Key.self], to: K.Value.self)
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/VariadicView.swift:131:13: note: property declared here
129 |
130 | @usableFromInline
131 | var element: _VariadicView.Children.Element
| `- note: property declared here
132 |
133 | init(_ element: _VariadicView.Children.Element) {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:87:48: warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | var output: K.Value!
82 |
83 | mutating func visit<Key: _ViewTraitKey>(type: Key.Type) {
| `- note: add '@MainActor' to make instance method 'visit(type:)' part of global actor 'MainActor'
84 | if K.Value.self == Key.Value.self {
85 | output = subview.element[Key.self] as? K.Value
86 | } else if MemoryLayout<K.Value>.size == MemoryLayout<Key.Value>.size {
87 | output = unsafeBitCast(subview.element[Key.self], to: K.Value.self)
| `- warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
88 | }
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/VariadicView.swift:131:13: note: property declared here
129 |
130 | @usableFromInline
131 | var element: _VariadicView.Children.Element
| `- note: property declared here
132 |
133 | init(_ element: _VariadicView.Children.Element) {
[203/213] Compiling Engine ViewVisitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:47:20: warning: main actor-isolated property 'id' cannot be used to satisfy nonisolated requirement from protocol 'Identifiable'; this is an error in the Swift 6 language mode
39 |
40 | @frozen
41 | public struct Subview: View, Identifiable {
| `- note: add '@preconcurrency' to the 'Identifiable' conformance to defer isolation checking to run time
42 |
43 | public struct ID: Hashable {
:
45 | }
46 |
47 | public var id: ID
| `- warning: main actor-isolated property 'id' cannot be used to satisfy nonisolated requirement from protocol 'Identifiable'; this is an error in the Swift 6 language mode
48 | public var content: Content
49 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:100:12: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
36 | @frozen
37 | @available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *)
38 | public struct ViewOutputList<Content: View>: View, RandomAccessCollection, Sequence {
| `- note: add '@preconcurrency' to the 'RandomAccessCollection' conformance to defer isolation checking to run time
39 |
40 | @frozen
:
98 | }
99 |
100 | public subscript(position: Index) -> Element {
| |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
101 | elements[position]
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:92:16: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
90 | public typealias Index = Int
91 |
92 | public var startIndex: Index {
| `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
93 | elements.startIndex
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:96:16: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
94 | }
95 |
96 | public var endIndex: Index {
| `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
97 | elements.endIndex
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:104:17: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
102 | }
103 |
104 | public func index(after index: Index) -> Index {
| |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
105 | elements.index(after: index)
106 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:79:17: warning: main actor-isolated instance method 'makeIterator()' cannot be used to satisfy nonisolated requirement from protocol 'Sequence'; this is an error in the Swift 6 language mode
36 | @frozen
37 | @available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *)
38 | public struct ViewOutputList<Content: View>: View, RandomAccessCollection, Sequence {
| `- note: add '@preconcurrency' to the 'Sequence' conformance to defer isolation checking to run time
39 |
40 | @frozen
:
77 | public typealias Iterator = IndexingIterator<Array<Element>>
78 |
79 | public func makeIterator() -> Iterator {
| |- warning: main actor-isolated instance method 'makeIterator()' cannot be used to satisfy nonisolated requirement from protocol 'Sequence'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'makeIterator()' to make this instance method not isolated to the actor
80 | elements.makeIterator()
81 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:83:16: warning: main actor-isolated property 'underestimatedCount' cannot be used to satisfy nonisolated requirement from protocol 'Sequence'; this is an error in the Swift 6 language mode
81 | }
82 |
83 | public var underestimatedCount: Int {
| `- warning: main actor-isolated property 'underestimatedCount' cannot be used to satisfy nonisolated requirement from protocol 'Sequence'; this is an error in the Swift 6 language mode
84 | elements.underestimatedCount
85 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:104:17: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
102 | }
103 |
104 | public func index(after index: Index) -> Index {
| |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
105 | elements.index(after: index)
106 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:100:12: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
98 | }
99 |
100 | public subscript(position: Index) -> Element {
| |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
101 | elements[position]
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:92:16: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
90 | public typealias Index = Int
91 |
92 | public var startIndex: Index {
| `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
93 | elements.startIndex
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:96:16: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
94 | }
95 |
96 | public var endIndex: Index {
| `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
97 | elements.endIndex
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:92:16: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
90 | public typealias Index = Int
91 |
92 | public var startIndex: Index {
| `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
93 | elements.startIndex
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:96:16: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
94 | }
95 |
96 | public var endIndex: Index {
| `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
97 | elements.endIndex
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:79:17: warning: main actor-isolated instance method 'makeIterator()' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
77 | public typealias Iterator = IndexingIterator<Array<Element>>
78 |
79 | public func makeIterator() -> Iterator {
| |- warning: main actor-isolated instance method 'makeIterator()' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'makeIterator()' to make this instance method not isolated to the actor
80 | elements.makeIterator()
81 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:100:12: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
98 | }
99 |
100 | public subscript(position: Index) -> Element {
| |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
101 | elements[position]
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:104:17: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
102 | }
103 |
104 | public func index(after index: Index) -> Index {
| |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
105 | elements.index(after: index)
106 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:203:24: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
45 | }
46 |
47 | public var id: ID
| `- note: property declared here
48 | public var content: Content
49 |
:
196 | var list = ViewOutputList<Key.Content>(elements: [])
197 |
198 | public static func == (lhs: Value, rhs: Value) -> Bool {
| `- note: add '@MainActor' to make operator function '==' part of global actor 'MainActor'
199 | guard lhs.list.count == rhs.list.count else {
200 | return false
201 | }
202 | for (lhs, rhs) in zip(lhs.list, rhs.list) {
203 | if lhs.id != rhs.id || lhs.phase != rhs.phase {
| `- warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
204 | return false
205 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:203:34: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
45 | }
46 |
47 | public var id: ID
| `- note: property declared here
48 | public var content: Content
49 |
:
196 | var list = ViewOutputList<Key.Content>(elements: [])
197 |
198 | public static func == (lhs: Value, rhs: Value) -> Bool {
| `- note: add '@MainActor' to make operator function '==' part of global actor 'MainActor'
199 | guard lhs.list.count == rhs.list.count else {
200 | return false
201 | }
202 | for (lhs, rhs) in zip(lhs.list, rhs.list) {
203 | if lhs.id != rhs.id || lhs.phase != rhs.phase {
| `- warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
204 | return false
205 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/GraphInputs.swift:13:24: warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
11 |
12 | extension GraphInputsModifier {
13 | public static func _makeInputs(
| |- warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to '_makeInputs(modifier:inputs:)' to make this static method not isolated to the actor
14 | modifier: _GraphValue<Self>,
15 | inputs: inout _GraphInputs
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/GraphInputs.swift:13:24: warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
11 |
12 | extension GraphInputsModifier {
13 | public static func _makeInputs(
| |- warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to '_makeInputs(modifier:inputs:)' to make this static method not isolated to the actor
14 | modifier: _GraphValue<Self>,
15 | inputs: inout _GraphInputs
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:307:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewStylesBox' may have shared mutable state; this is an error in the Swift 6 language mode
305 |
306 | private struct ViewStylesKey: EnvironmentKey {
307 | static let defaultValue = ViewStylesBox()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewStylesBox' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
308 | }
309 |
:
315 | }
316 |
317 | private struct ViewStylesBox {
| `- note: consider making struct 'ViewStylesBox' conform to the 'Sendable' protocol
318 | private var storage: [UnsafeRawPointer: [AnyViewStyle]] = [:]
319 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:571:50: warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
569 | to: _GraphValue<AnyViewStyledView<StyledView, Content>>.self
570 | )
571 | outputs = Content._makeView(view: view[\.content], inputs: inputs)
| `- warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
572 | }
573 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:590:54: warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
588 | to: _GraphValue<AnyViewStyledView<StyledView, Content>>.self
589 | )
590 | outputs = Content._makeViewList(view: view[\.content], inputs: inputs)
| `- warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
591 | }
592 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:25:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct ZIndexTrait: ViewTraitKey {
24 | public typealias Value = Double
25 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | of: "7SwiftUI14ZIndexTraitKeyV"
27 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:32:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
30 | public struct LayoutPriorityTrait: ViewTraitKey {
31 | public typealias Value = Double
32 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | of: "7SwiftUI22LayoutPriorityTraitKeyV"
34 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:53:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
51 | public struct IsSectionHeaderTrait: ViewTraitKey {
52 | public typealias Value = Bool
53 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | of: "7SwiftUI23IsSectionHeaderTraitKeyV"
55 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:60:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
58 | public struct IsSectionFooterTrait: ViewTraitKey {
59 | public typealias Value = Bool
60 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | of: "7SwiftUI23IsSectionFooterTraitKeyV"
62 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:85:34: warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | var output: K.Value!
82 |
83 | mutating func visit<Key: _ViewTraitKey>(type: Key.Type) {
| `- note: add '@MainActor' to make instance method 'visit(type:)' part of global actor 'MainActor'
84 | if K.Value.self == Key.Value.self {
85 | output = subview.element[Key.self] as? K.Value
| `- warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
86 | } else if MemoryLayout<K.Value>.size == MemoryLayout<Key.Value>.size {
87 | output = unsafeBitCast(subview.element[Key.self], to: K.Value.self)
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/VariadicView.swift:131:13: note: property declared here
129 |
130 | @usableFromInline
131 | var element: _VariadicView.Children.Element
| `- note: property declared here
132 |
133 | init(_ element: _VariadicView.Children.Element) {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:87:48: warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | var output: K.Value!
82 |
83 | mutating func visit<Key: _ViewTraitKey>(type: Key.Type) {
| `- note: add '@MainActor' to make instance method 'visit(type:)' part of global actor 'MainActor'
84 | if K.Value.self == Key.Value.self {
85 | output = subview.element[Key.self] as? K.Value
86 | } else if MemoryLayout<K.Value>.size == MemoryLayout<Key.Value>.size {
87 | output = unsafeBitCast(subview.element[Key.self], to: K.Value.self)
| `- warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
88 | }
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/VariadicView.swift:131:13: note: property declared here
129 |
130 | @usableFromInline
131 | var element: _VariadicView.Children.Element
| `- note: property declared here
132 |
133 | init(_ element: _VariadicView.Children.Element) {
[204/213] Compiling Engine module.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:47:20: warning: main actor-isolated property 'id' cannot be used to satisfy nonisolated requirement from protocol 'Identifiable'; this is an error in the Swift 6 language mode
39 |
40 | @frozen
41 | public struct Subview: View, Identifiable {
| `- note: add '@preconcurrency' to the 'Identifiable' conformance to defer isolation checking to run time
42 |
43 | public struct ID: Hashable {
:
45 | }
46 |
47 | public var id: ID
| `- warning: main actor-isolated property 'id' cannot be used to satisfy nonisolated requirement from protocol 'Identifiable'; this is an error in the Swift 6 language mode
48 | public var content: Content
49 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:100:12: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
36 | @frozen
37 | @available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *)
38 | public struct ViewOutputList<Content: View>: View, RandomAccessCollection, Sequence {
| `- note: add '@preconcurrency' to the 'RandomAccessCollection' conformance to defer isolation checking to run time
39 |
40 | @frozen
:
98 | }
99 |
100 | public subscript(position: Index) -> Element {
| |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
101 | elements[position]
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:92:16: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
90 | public typealias Index = Int
91 |
92 | public var startIndex: Index {
| `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
93 | elements.startIndex
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:96:16: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
94 | }
95 |
96 | public var endIndex: Index {
| `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
97 | elements.endIndex
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:104:17: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
102 | }
103 |
104 | public func index(after index: Index) -> Index {
| |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
105 | elements.index(after: index)
106 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:79:17: warning: main actor-isolated instance method 'makeIterator()' cannot be used to satisfy nonisolated requirement from protocol 'Sequence'; this is an error in the Swift 6 language mode
36 | @frozen
37 | @available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *)
38 | public struct ViewOutputList<Content: View>: View, RandomAccessCollection, Sequence {
| `- note: add '@preconcurrency' to the 'Sequence' conformance to defer isolation checking to run time
39 |
40 | @frozen
:
77 | public typealias Iterator = IndexingIterator<Array<Element>>
78 |
79 | public func makeIterator() -> Iterator {
| |- warning: main actor-isolated instance method 'makeIterator()' cannot be used to satisfy nonisolated requirement from protocol 'Sequence'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'makeIterator()' to make this instance method not isolated to the actor
80 | elements.makeIterator()
81 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:83:16: warning: main actor-isolated property 'underestimatedCount' cannot be used to satisfy nonisolated requirement from protocol 'Sequence'; this is an error in the Swift 6 language mode
81 | }
82 |
83 | public var underestimatedCount: Int {
| `- warning: main actor-isolated property 'underestimatedCount' cannot be used to satisfy nonisolated requirement from protocol 'Sequence'; this is an error in the Swift 6 language mode
84 | elements.underestimatedCount
85 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:104:17: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
102 | }
103 |
104 | public func index(after index: Index) -> Index {
| |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
105 | elements.index(after: index)
106 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:100:12: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
98 | }
99 |
100 | public subscript(position: Index) -> Element {
| |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
101 | elements[position]
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:92:16: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
90 | public typealias Index = Int
91 |
92 | public var startIndex: Index {
| `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
93 | elements.startIndex
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:96:16: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
94 | }
95 |
96 | public var endIndex: Index {
| `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
97 | elements.endIndex
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:92:16: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
90 | public typealias Index = Int
91 |
92 | public var startIndex: Index {
| `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
93 | elements.startIndex
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:96:16: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
94 | }
95 |
96 | public var endIndex: Index {
| `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
97 | elements.endIndex
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:79:17: warning: main actor-isolated instance method 'makeIterator()' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
77 | public typealias Iterator = IndexingIterator<Array<Element>>
78 |
79 | public func makeIterator() -> Iterator {
| |- warning: main actor-isolated instance method 'makeIterator()' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'makeIterator()' to make this instance method not isolated to the actor
80 | elements.makeIterator()
81 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:100:12: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
98 | }
99 |
100 | public subscript(position: Index) -> Element {
| |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
101 | elements[position]
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:104:17: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
102 | }
103 |
104 | public func index(after index: Index) -> Index {
| |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
105 | elements.index(after: index)
106 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:203:24: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
45 | }
46 |
47 | public var id: ID
| `- note: property declared here
48 | public var content: Content
49 |
:
196 | var list = ViewOutputList<Key.Content>(elements: [])
197 |
198 | public static func == (lhs: Value, rhs: Value) -> Bool {
| `- note: add '@MainActor' to make operator function '==' part of global actor 'MainActor'
199 | guard lhs.list.count == rhs.list.count else {
200 | return false
201 | }
202 | for (lhs, rhs) in zip(lhs.list, rhs.list) {
203 | if lhs.id != rhs.id || lhs.phase != rhs.phase {
| `- warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
204 | return false
205 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:203:34: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
45 | }
46 |
47 | public var id: ID
| `- note: property declared here
48 | public var content: Content
49 |
:
196 | var list = ViewOutputList<Key.Content>(elements: [])
197 |
198 | public static func == (lhs: Value, rhs: Value) -> Bool {
| `- note: add '@MainActor' to make operator function '==' part of global actor 'MainActor'
199 | guard lhs.list.count == rhs.list.count else {
200 | return false
201 | }
202 | for (lhs, rhs) in zip(lhs.list, rhs.list) {
203 | if lhs.id != rhs.id || lhs.phase != rhs.phase {
| `- warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
204 | return false
205 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/GraphInputs.swift:13:24: warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
11 |
12 | extension GraphInputsModifier {
13 | public static func _makeInputs(
| |- warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to '_makeInputs(modifier:inputs:)' to make this static method not isolated to the actor
14 | modifier: _GraphValue<Self>,
15 | inputs: inout _GraphInputs
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/GraphInputs.swift:13:24: warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
11 |
12 | extension GraphInputsModifier {
13 | public static func _makeInputs(
| |- warning: main actor-isolated static method '_makeInputs(modifier:inputs:)' cannot be used to satisfy nonisolated requirement from protocol '_GraphInputsModifier'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to '_makeInputs(modifier:inputs:)' to make this static method not isolated to the actor
14 | modifier: _GraphValue<Self>,
15 | inputs: inout _GraphInputs
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:307:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewStylesBox' may have shared mutable state; this is an error in the Swift 6 language mode
305 |
306 | private struct ViewStylesKey: EnvironmentKey {
307 | static let defaultValue = ViewStylesBox()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewStylesBox' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
308 | }
309 |
:
315 | }
316 |
317 | private struct ViewStylesBox {
| `- note: consider making struct 'ViewStylesBox' conform to the 'Sendable' protocol
318 | private var storage: [UnsafeRawPointer: [AnyViewStyle]] = [:]
319 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:571:50: warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
569 | to: _GraphValue<AnyViewStyledView<StyledView, Content>>.self
570 | )
571 | outputs = Content._makeView(view: view[\.content], inputs: inputs)
| `- warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
572 | }
573 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:590:54: warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
588 | to: _GraphValue<AnyViewStyledView<StyledView, Content>>.self
589 | )
590 | outputs = Content._makeViewList(view: view[\.content], inputs: inputs)
| `- warning: cannot form key path to main actor-isolated property 'content'; this is an error in the Swift 6 language mode
591 | }
592 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:25:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct ZIndexTrait: ViewTraitKey {
24 | public typealias Value = Double
25 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | of: "7SwiftUI14ZIndexTraitKeyV"
27 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:32:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
30 | public struct LayoutPriorityTrait: ViewTraitKey {
31 | public typealias Value = Double
32 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | of: "7SwiftUI22LayoutPriorityTraitKeyV"
34 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:53:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
51 | public struct IsSectionHeaderTrait: ViewTraitKey {
52 | public typealias Value = Bool
53 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | of: "7SwiftUI23IsSectionHeaderTraitKeyV"
55 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:60:23: warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
58 | public struct IsSectionFooterTrait: ViewTraitKey {
59 | public typealias Value = Bool
60 | public static let conformance = ViewTraitKeyProtocolDescriptor.conformance(
| |- warning: static property 'conformance' is not concurrency-safe because non-'Sendable' type 'ProtocolConformance<ViewTraitKeyProtocolDescriptor>?' (aka 'Optional<ProtocolConformance<ViewTraitKeyProtocolDescriptor>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'conformance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | of: "7SwiftUI23IsSectionFooterTraitKeyV"
62 | )
/Users/admin/builder/spi-builder-workspace/Sources/EngineCore/ProtocolConformance.swift:10:15: note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
8 | /// - `https://forums.swift.org/t/calling-swift-runtime-methods/23325`
9 | /// - `https://github.com/apple/swift/blob/main/stdlib/toolchain/Compatibility50/ProtocolConformance.cpp`
10 | public struct ProtocolConformance<P: TypeDescriptor> {
| `- note: generic struct 'ProtocolConformance' does not conform to the 'Sendable' protocol
11 | public var metadata: UnsafeRawPointer
12 | public var conformance: UnsafeRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:85:34: warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | var output: K.Value!
82 |
83 | mutating func visit<Key: _ViewTraitKey>(type: Key.Type) {
| `- note: add '@MainActor' to make instance method 'visit(type:)' part of global actor 'MainActor'
84 | if K.Value.self == Key.Value.self {
85 | output = subview.element[Key.self] as? K.Value
| `- warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
86 | } else if MemoryLayout<K.Value>.size == MemoryLayout<Key.Value>.size {
87 | output = unsafeBitCast(subview.element[Key.self], to: K.Value.self)
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/VariadicView.swift:131:13: note: property declared here
129 |
130 | @usableFromInline
131 | var element: _VariadicView.Children.Element
| `- note: property declared here
132 |
133 | init(_ element: _VariadicView.Children.Element) {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewTraitKey.swift:87:48: warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | var output: K.Value!
82 |
83 | mutating func visit<Key: _ViewTraitKey>(type: Key.Type) {
| `- note: add '@MainActor' to make instance method 'visit(type:)' part of global actor 'MainActor'
84 | if K.Value.self == Key.Value.self {
85 | output = subview.element[Key.self] as? K.Value
86 | } else if MemoryLayout<K.Value>.size == MemoryLayout<Key.Value>.size {
87 | output = unsafeBitCast(subview.element[Key.self], to: K.Value.self)
| `- warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
88 | }
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/VariadicView.swift:131:13: note: property declared here
129 |
130 | @usableFromInline
131 | var element: _VariadicView.Children.Element
| `- note: property declared here
132 |
133 | init(_ element: _VariadicView.Children.Element) {
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[212/271] Compiling SwiftBasicFormat Syntax+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[213/271] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[214/271] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[215/271] Compiling SwiftBasicFormat InferIndentation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[216/271] Compiling SwiftDiagnostics Message.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[217/272] Compiling SwiftDiagnostics Convenience.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[218/272] Emitting module SwiftDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[219/272] Compiling SwiftDiagnostics Note.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[220/272] Compiling SwiftDiagnostics GroupedDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[221/272] Compiling SwiftDiagnostics DiagnosticDecorator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[222/272] Compiling SwiftDiagnostics FixIt.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[223/272] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[224/272] Compiling SwiftDiagnostics Diagnostic.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[225/272] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[226/272] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[227/272] Emitting module SwiftBasicFormat
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[228/272] Compiling SwiftBasicFormat BasicFormat.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[229/272] Compiling SwiftParser StringLiterals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[230/272] Compiling SwiftParser SwiftParserCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[231/272] Compiling SwiftParser SwiftVersion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[232/272] Compiling SwiftParser SyntaxUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[233/276] Compiling SwiftParser TokenConsumer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[234/276] Compiling SwiftParser TokenPrecedence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[235/276] Compiling SwiftParser TokenSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[236/276] Compiling SwiftParser TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[237/276] Emitting module SwiftParser
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[238/276] Compiling SwiftParser Nominals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[239/276] Compiling SwiftParser Parameters.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[240/276] Compiling SwiftParser ParseSourceFile.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[241/276] Compiling SwiftParser Parser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[242/276] Compiling SwiftParser Patterns.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[243/276] Compiling SwiftParser Recovery.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[244/276] Compiling SwiftParser Specifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[245/276] Compiling SwiftParser Statements.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[246/276] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[247/276] Compiling SwiftParser Directives.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[248/276] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[249/276] Compiling SwiftParser Expressions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[250/276] Compiling SwiftParser IncrementalParseTransition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[251/276] Compiling SwiftParser IsValidIdentifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[252/276] Compiling SwiftParser Attributes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[253/276] Compiling SwiftParser Availability.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[254/276] Compiling SwiftParser CharacterInfo.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[255/276] Compiling SwiftParser CollectionNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[256/276] Compiling SwiftParser Declarations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[257/276] Compiling SwiftParser Cursor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[258/276] Compiling SwiftParser Lexeme.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[259/276] Compiling SwiftParser LexemeSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[260/276] Compiling SwiftParser Lexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[261/276] Compiling SwiftParser RegexLiteralLexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[262/276] Compiling SwiftParser TopLevel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[263/276] Compiling SwiftParser TriviaParser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[264/276] Compiling SwiftParser Types.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[265/276] Compiling SwiftParser ExperimentalFeatures.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[266/276] Compiling SwiftParser UnicodeScalarExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[267/276] Compiling SwiftParser Lookahead.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[268/276] Compiling SwiftParser LoopProgressCondition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[269/276] Compiling SwiftParser Modifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[270/276] Compiling SwiftParser Names.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[271/276] Compiling SwiftParser IsLexerClassified.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[272/276] Compiling SwiftParser LayoutNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[273/276] Compiling SwiftParser Parser+TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[274/276] Compiling SwiftParser TokenSpecStaticMembers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[275/299] Emitting module SwiftOperators
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[276/299] Compiling SwiftOperators Operator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[277/300] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[278/301] Compiling SwiftOperators OperatorError+Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[279/301] Compiling SwiftOperators PrecedenceGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[280/301] Compiling SwiftOperators PrecedenceGraph.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[281/301] Compiling SwiftOperators OperatorTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[282/301] Compiling SwiftOperators SyntaxSynthesis.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[283/301] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[284/301] Compiling SwiftOperators OperatorTable+Semantics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[285/301] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[286/301] Compiling SwiftParserDiagnostics Utils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[287/301] Compiling SwiftOperators OperatorError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[288/301] Compiling SwiftOperators OperatorTable+Defaults.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[289/301] Compiling SwiftOperators OperatorTable+Folding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[290/301] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[291/301] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[292/301] Compiling SwiftParserDiagnostics PresenceUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[293/301] Compiling SwiftParserDiagnostics MissingNodesError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[294/301] Compiling SwiftParserDiagnostics MissingTokenError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[295/301] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[296/301] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[297/301] Emitting module SwiftParserDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[298/301] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[299/301] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[300/316] Compiling SwiftSyntaxBuilder ResultBuilders.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[301/316] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[302/317] Compiling SwiftSyntaxBuilder BuildableNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[303/317] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[304/317] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[305/317] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[306/317] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[307/317] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[308/317] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[309/317] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[310/317] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[311/317] Emitting module SwiftSyntaxBuilder
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[312/317] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[313/317] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[314/317] Compiling SwiftSyntaxBuilder Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[315/317] Compiling SwiftSyntaxBuilder ListBuilder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[316/335] Compiling SwiftSyntaxMacros PreambleMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[317/335] Compiling SwiftSyntaxMacros Macro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[318/335] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[319/335] Compiling SwiftSyntaxMacros FreestandingMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[320/335] Compiling SwiftSyntaxMacros Macro+Format.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[321/335] Compiling SwiftSyntaxMacros ExpressionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[322/335] Compiling SwiftSyntaxMacros ExtensionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[323/335] Compiling SwiftSyntaxMacros MemberMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[324/335] Compiling SwiftSyntaxMacros PeerMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[325/335] Compiling SwiftSyntaxMacros CodeItemMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[326/335] Compiling SwiftSyntaxMacros DeclarationMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[327/336] Compiling SwiftSyntaxMacros AttachedMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[328/336] Compiling SwiftSyntaxMacros BodyMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[329/336] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[330/336] Compiling SwiftSyntaxMacros AccessorMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[331/336] Emitting module SwiftSyntaxMacros
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[332/336] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[333/336] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[334/336] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[335/346] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[336/346] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[337/346] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[338/346] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[339/346] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[340/346] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[341/346] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[342/346] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[343/346] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[344/346] Emitting module SwiftSyntaxMacroExpansion
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[345/358] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[346/358] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[347/358] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[348/358] Compiling SwiftCompilerPluginMessageHandling Macros.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[349/359] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[350/359] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[351/359] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[352/359] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[353/359] Emitting module SwiftCompilerPluginMessageHandling
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[354/359] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[355/359] Compiling SwiftCompilerPluginMessageHandling JSON.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[356/359] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[357/359] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[358/361] Emitting module SwiftCompilerPlugin
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[359/361] Compiling SwiftCompilerPlugin CompilerPlugin.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[360/364] Emitting module EngineMacrosCore
[361/364] Compiling EngineMacrosCore EngineMacrosCore.swift
[362/364] Compiling EngineMacrosCore StyledViewMacro.swift
[362/364] Write Objects.LinkFileList
[363/364] Linking EngineMacrosCore-tool
[365/366] Compiling EngineMacros StyledView.swift
[366/366] Emitting module EngineMacros
Build complete! (29.77s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "600.1.1"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-syntax"
}
],
"manifest_display_name" : "Engine",
"name" : "Engine",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "Engine",
"targets" : [
"Engine"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "EngineCore",
"targets" : [
"EngineCore"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "EngineCoreC",
"targets" : [
"EngineCoreC"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "EngineMacros",
"targets" : [
"EngineMacros"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "EngineMacrosCore",
"targets" : [
"EngineMacrosCore"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "EngineTests",
"module_type" : "SwiftTarget",
"name" : "EngineTests",
"path" : "Sources/EngineTests",
"product_dependencies" : [
"SwiftSyntaxMacrosTestSupport"
],
"sources" : [
"EngineCoreMultiViewVisitorTests.swift",
"EngineCoreRuntimeTests.swift",
"EngineCoreViewVisitorTests.swift",
"EngineMacroTests.swift",
"EngineViewTraitTests.swift"
],
"target_dependencies" : [
"Engine",
"EngineMacros"
],
"type" : "test"
},
{
"c99name" : "EngineMacrosCore",
"module_type" : "SwiftTarget",
"name" : "EngineMacrosCore",
"path" : "Sources/EngineMacrosCore",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"EngineMacros",
"EngineMacrosCore"
],
"sources" : [
"EngineMacrosCore.swift",
"StyledViewMacro.swift"
],
"type" : "macro"
},
{
"c99name" : "EngineMacros",
"module_type" : "SwiftTarget",
"name" : "EngineMacros",
"path" : "Sources/EngineMacros",
"product_memberships" : [
"EngineMacros"
],
"sources" : [
"StyledView.swift"
],
"target_dependencies" : [
"Engine",
"EngineMacrosCore"
],
"type" : "library"
},
{
"c99name" : "EngineCoreC",
"module_type" : "ClangTarget",
"name" : "EngineCoreC",
"path" : "Sources/EngineCoreC",
"product_memberships" : [
"Engine",
"EngineCore",
"EngineCoreC",
"EngineMacros"
],
"sources" : [
"visitors.c"
],
"type" : "library"
},
{
"c99name" : "EngineCore",
"module_type" : "SwiftTarget",
"name" : "EngineCore",
"path" : "Sources/EngineCore",
"product_memberships" : [
"Engine",
"EngineCore",
"EngineMacros"
],
"sources" : [
"AnyViewVisitor.swift",
"ConditionalContentVisitor.swift",
"CustomViewVisitor.swift",
"EmptyViewVisitor.swift",
"EnvironmentKeyVisitor.swift",
"ForEachVisitor.swift",
"GroupVisitor.swift",
"ModifiedContentVisitor.swift",
"MultiViewVisitor.swift",
"OptionalVisitor.swift",
"ProtocolConformance.swift",
"Runtime.swift",
"SectionVisitor.swift",
"TupleViewVisitor.swift",
"TupleVisitor.swift",
"TypeDescriptor.swift",
"TypeIdentifier.swift",
"TypeMetadata.swift",
"UnsafePointer.swift",
"ViewModifierVisitor.swift",
"ViewTraitKeyVisitor.swift",
"ViewTypeIdentifier.swift",
"ViewVisitor.swift"
],
"target_dependencies" : [
"EngineCoreC"
],
"type" : "library"
},
{
"c99name" : "Engine",
"module_type" : "SwiftTarget",
"name" : "Engine",
"path" : "Sources/Engine",
"product_memberships" : [
"Engine",
"EngineMacros"
],
"sources" : [
"Sources/AnyAnimatableData.swift",
"Sources/AnyShape.swift",
"Sources/AnyShapeStyle+Extensions.swift",
"Sources/AnyView.swift",
"Sources/AnyViewModifier.swift",
"Sources/AttributedString+Extensions.swift",
"Sources/BindingTransform.swift",
"Sources/Color+Extensions.swift",
"Sources/ConditionalContent.swift",
"Sources/ConditionalLayout.swift",
"Sources/ConditionalShape.swift",
"Sources/ConditionalView.swift",
"Sources/EmptyShape.swift",
"Sources/Environment+Extensions.swift",
"Sources/EnvironmentKeyVisitor.swift",
"Sources/EnvironmentOrValue.swift",
"Sources/EnvironmentValueReader.swift",
"Sources/EnvironmentValuesVisitor.swift",
"Sources/Font+Extensions.swift",
"Sources/ForEachSubview.swift",
"Sources/GraphInputs.swift",
"Sources/Group.swift",
"Sources/HostingController.swift",
"Sources/HostingView.swift",
"Sources/Image+Extensions.swift",
"Sources/IsNilTransform.swift",
"Sources/IsNotNilTransform.swift",
"Sources/LayoutAdapter.swift",
"Sources/LayoutBuilder.swift",
"Sources/LayoutThatFits.swift",
"Sources/MainActor.swift",
"Sources/MultiViewAdapter.swift",
"Sources/MultiViewVisitor.swift",
"Sources/Never.swift",
"Sources/OptionalAdapter.swift",
"Sources/PreferenceKeyReader.swift",
"Sources/PrimitiveView.swift",
"Sources/PrimitiveViewModifier.swift",
"Sources/PropertyList.swift",
"Sources/ProposedSize.swift",
"Sources/SectionView.swift",
"Sources/ShapeAdapter.swift",
"Sources/ShapeBuilder.swift",
"Sources/StateOrBinding.swift",
"Sources/StaticCondition.swift",
"Sources/StaticConditionalContent.swift",
"Sources/StaticConditionalModifier.swift",
"Sources/StaticContent.swift",
"Sources/StaticModifier.swift",
"Sources/StyleContext.swift",
"Sources/SymmetricallyScaledText.swift",
"Sources/Text+Extensions.swift",
"Sources/TextAttachment.swift",
"Sources/TextBuilder.swift",
"Sources/TextReader.swift",
"Sources/TraitValueKey.swift",
"Sources/Transaction.swift",
"Sources/UnaryViewAdaptor.swift",
"Sources/UnaryViewModifier.swift",
"Sources/UnwrapTransform.swift",
"Sources/UpdatePhase.swift",
"Sources/UserInterfaceIdiomContent.swift",
"Sources/UserInterfaceIdiomModifier.swift",
"Sources/VariadicView.swift",
"Sources/VersionedDynamicProperty.swift",
"Sources/VersionedView.swift",
"Sources/VersionedViewInput.swift",
"Sources/VersionedViewModifier.swift",
"Sources/ViewAdapter.swift",
"Sources/ViewAlias.swift",
"Sources/ViewInputConditionalContent.swift",
"Sources/ViewInputConditionalModifier.swift",
"Sources/ViewInputKey.swift",
"Sources/ViewInputs.swift",
"Sources/ViewInputsVisitor.swift",
"Sources/ViewModifierBuilder.swift",
"Sources/ViewModifierContent.swift",
"Sources/ViewModifierVisitor.swift",
"Sources/ViewOutputAlias.swift",
"Sources/ViewOutputKey.swift",
"Sources/ViewStackAxisReader.swift",
"Sources/ViewStyle.swift",
"Sources/ViewTraitKey.swift",
"Sources/ViewTraitKeyVisitor.swift",
"Sources/ViewUpdateDebug.swift",
"Sources/ViewVisitor.swift",
"module.swift"
],
"target_dependencies" : [
"EngineCore"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/nathantannar4/engine/2.1.4
Repository: nathantannar4/Engine
Swift version used: 6.1
Target: Engine
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch release/6.2 -> FETCH_HEAD
* [new branch] release/6.2 -> origin/release/6.2
HEAD is now at 8799b69 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'Engine'...
Finished extracting symbol information for 'Engine'. (8.58s)
Building documentation for 'Engine'...
warning: 'Engine.EnvironmentKeyVisitor' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues'
--> Sources/Engine/Sources/Environment+Extensions.swift:7:34-7:62
5 | import SwiftUI
6 |
7 + /// Accessors to internal keys ``Engine.EnvironmentKeyVisitor``
8 | extension EnvironmentValues {
9 |
warning: '.labelsHidden(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/labelsHidden'
--> Sources/Engine/Sources/Environment+Extensions.swift:10:29-10:45
8 | extension EnvironmentValues {
9 |
10 + /// The value for the ``.labelsHidden(_)`` modifier
11 | public var labelsHidden: Bool {
12 | if #available(iOS 18.0, macOS 15.0, tvOS 18.0, watchOS 11.0, visionOS 2.0, *) {
warning: '.foregroundStyle(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/foregroundStyle'
--> Sources/Engine/Sources/Environment+Extensions.swift:23:29-23:48
21 | }
22 |
23 + /// The value for the ``.foregroundStyle(_)``/``.foregroundColor(_)`` modifier
24 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
25 | public var foregroundStyle: AnyShapeStyle {
warning: '.foregroundColor(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/foregroundStyle'
--> Sources/Engine/Sources/Environment+Extensions.swift:23:53-23:72
21 | }
22 |
23 + /// The value for the ``.foregroundStyle(_)``/``.foregroundColor(_)`` modifier
24 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
25 | public var foregroundStyle: AnyShapeStyle {
warning: '.tint(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/tint'
--> Sources/Engine/Sources/Environment+Extensions.swift:34:29-34:37
32 | }
33 |
34 + /// The value for the ``.tint(_)`` modifier
35 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
36 | public var tint: AnyShapeStyle {
warning: '.accentColor(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/accentColor'
--> Sources/Engine/Sources/Environment+Extensions.swift:40:29-40:44
38 | }
39 |
40 + /// The value for the ``.accentColor(_)`` modifier
41 | public var accentColor: Color {
42 | self["AccentColorKey", default: Color.accentColor]
warning: '.underlineStyle(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/underlineStyle'
--> Sources/Engine/Sources/Environment+Extensions.swift:45:29-45:47
43 | }
44 |
45 + /// The value for the ``.underlineStyle(_)`` modifier
46 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
47 | public var underlineStyle: Text.LineStyle? {
warning: '.strikethrough(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/strikethroughStyle'
--> Sources/Engine/Sources/Environment+Extensions.swift:51:29-51:46
49 | }
50 |
51 + /// The value for the ``.strikethrough(_)`` modifier
52 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
53 | public var strikethroughStyle: Text.LineStyle? {
warning: '.kerning(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/kerning'
--> Sources/Engine/Sources/Environment+Extensions.swift:57:29-57:40
55 | }
56 |
57 + /// The value for the ``.kerning(_)`` modifier
58 | @available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *)
59 | public var kerning: CGFloat {
warning: '.tracking(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/tracking'
--> Sources/Engine/Sources/Environment+Extensions.swift:63:29-63:41
61 | }
62 |
63 + /// The value for the ``.tracking(_)`` modifier
64 | @available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *)
65 | public var tracking: CGFloat {
warning: '.baselineOffset(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/baselineOffset'
--> Sources/Engine/Sources/Environment+Extensions.swift:69:29-69:47
67 | }
68 |
69 + /// The value for the ``.baselineOffset(_)`` modifier
70 | @available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *)
71 | public var baselineOffset: CGFloat {
warning: '.lineLimit(_, reservesSpace: Bool)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/lowerLineLimit'
--> Sources/Engine/Sources/Environment+Extensions.swift:75:29-75:63
73 | }
74 |
75 + /// The value for the ``.lineLimit(_, reservesSpace: Bool)`` modifier
76 | @available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *)
77 | public var lowerLineLimit: Int? {
warning: '.textScale(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/textScale'
--> Sources/Engine/Sources/Environment+Extensions.swift:81:29-81:42
79 | }
80 |
81 + /// The value for the ``.textScale(_)`` modifier
82 | @available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
83 | public var textScale: Text.Scale {
warning: '.imageScale(_)' doesn't exist at '/Engine/SwiftUICore/EnvironmentValues/imageScale'
--> Sources/Engine/Sources/Environment+Extensions.swift:87:29-87:43
85 | }
86 |
87 + /// The value for the ``.imageScale(_)`` modifier
88 | @available(iOS 13.0, macOS 11.0, tvOS 13.0, watchOS 6.0, *)
89 | public var imageScale: Image.Scale? {
warning: 'MultiView' doesn't exist at '/Engine/MultiViewAdapter'
--> Sources/Engine/Sources/MultiViewAdapter.swift:26:42-26:51
24 | /// views to UIKit/AppKit components.
25 | ///
26 + /// ``MultiViewAdapter`` relies on the ``MultiView`` protocol which
27 | /// a ``MultiViewVisitor`` uses to iterate over each subview.
28 | ///
warning: 'MultiView' doesn't exist at '/Engine/MultiViewProtocolDescriptor'
--> Sources/Engine/Sources/MultiViewVisitor.swift:12:38-12:47
10 | public typealias MultiViewVisitor = EngineCore.MultiViewVisitor
11 |
12 + /// The ``TypeDescriptor`` for the ``MultiView`` protocol
13 | public typealias MultiViewProtocolDescriptor = EngineCore.MultiViewProtocolDescriptor
14 |
warning: 'descriptor' doesn't exist at '/Engine/TypeDescriptor'
--> Sources/Engine/Sources/StaticContent.swift:11:37-11:47
9 | /// A static type-erased `View`.
10 | ///
11 + /// > Warning: The ``TypeDescriptor/descriptor`` should match the type
12 | /// returned by `content`
13 | @frozen
warning: 'descriptor' doesn't exist at '/Engine/TypeDescriptor'
--> Sources/Engine/Sources/StaticModifier.swift:11:37-11:47
9 | /// A static type-erased `ViewModifier`.
10 | ///
11 + /// > Warning: The ``TypeDescriptor/descriptor`` should match the type
12 | /// returned by `modifier`
13 | @frozen
warning: 'View' doesn't exist at '/Engine/StyleContext'
--> Sources/Engine/Sources/StyleContext.swift:20:15-20:19
18 | /// - ``SidebarStyleContext``/``NavigationViewStyleContext``
19 | ///
20 + /// Use the ``View/styleContext(_:)`` on an view to apply a context.
21 | ///
22 | /// See Also:
warning: 'UserInterfaceIdiomModifer' doesn't exist at '/Engine/UserInterfaceIdiomContent'
--> Sources/Engine/Sources/UserInterfaceIdiomContent.swift:12:52-12:77
10 | /// can only contain is a `Binding`
11 | ///
12 + /// > Tip: Use ``UserInterfaceIdiomContent`` and ``UserInterfaceIdiomModifer``
13 | /// to aide with cross platform compatibility.
14 | ///
warning: 'UserInterfaceIdiomModifer' doesn't exist at '/Engine/UserInterfaceIdiomModifier'
--> Sources/Engine/Sources/UserInterfaceIdiomModifier.swift:12:52-12:77
10 | /// can only contain is a `Binding`
11 | ///
12 + /// > Tip: Use ``UserInterfaceIdiomContent`` and ``UserInterfaceIdiomModifer``
13 | /// to aide with cross platform compatibility.
14 | ///
warning: 'VersionedProperty' doesn't exist at '/Engine/VersionedDynamicProperty'
--> Sources/Engine/Sources/VersionedDynamicProperty.swift:12:18-12:35
10 | /// a newer dynamic properties, such as `FocusState`, challenging.
11 | ///
12 + /// > Tip: Use ``VersionedProperty`` to aide with backwards compatibility.
| ├─suggestion: Replace 'VersionedProperty' with 'V1Property'
| ├─suggestion: Replace 'VersionedProperty' with 'V2Property'
| ├─suggestion: Replace 'VersionedProperty' with 'V3Property'
| ├─suggestion: Replace 'VersionedProperty' with 'V4Property'
| ├─suggestion: Replace 'VersionedProperty' with 'V5Property'
| ╰─suggestion: Replace 'VersionedProperty' with 'V6Property'
13 | ///
14 | /// For example, a `FocusState` wrapped as follows:
warning: 'View' doesn't exist at '/Engine/ViewAlias'
--> Sources/Engine/Sources/ViewAlias.swift:12:15-12:19
10 | /// Because ``ViewAlias`` is guaranteed to be static it can be used for
11 | /// type-erasure without the performance impacts associated with `AnyView`.
12 + /// Use the ``View/viewAlias(_:source:)`` on an ancestor to define
13 | /// the view ``ViewAlias`` should be resolved to.
14 | ///
warning: 'Value' doesn't exist at '/Engine/ViewInput'
--> Sources/Engine/Sources/ViewInputKey.swift:19:40-19:45
17 | }
18 |
19 + /// A ``ViewInput`` that's ``ViewInput/Value`` is a `Bool` that defaults to `true`.
| ╰─suggestion: Replace 'Value' with 'value'
20 | public protocol ViewInputFlag: ViewInput, ViewInputKey, ViewInputsCondition where Key == Self, Value == Bool { }
21 |
warning: 'View' doesn't exist at '/Engine/ViewOutputAlias'
--> Sources/Engine/Sources/ViewOutputAlias.swift:12:15-12:19
10 | /// type-erasure with `AnyView` by defining the `Content`.
11 | ///
12 + /// Use the ``View/viewOutputAlias(_:source:)`` on a descendant to
13 | /// define the source of the alias.
14 | ///
warning: 'View' doesn't exist at '/Engine/ViewOutputKey'
--> Sources/Engine/Sources/ViewOutputKey.swift:13:15-13:19
11 | /// type-erasure with `AnyView` by defining the `Content`.
12 | ///
13 + /// Use the ``View/viewOutput(_:source:)`` on a descendant to
14 | /// add the view to the output.
15 | ///
warning: 'ViewOutputKey.Value' doesn't exist at '/Engine/ViewOutputKeyValueProxy'
--> Sources/Engine/Sources/ViewOutputKey.swift:222:20-222:39
220 | }
221 |
222 + /// A proxy to a ``ViewOutputKey.Value`` that must be read by ``ViewOutputKeyValueReader``
223 | @available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *)
224 | public struct ViewOutputKeyValueProxy<Key: ViewOutputKey> {
warning: 'View' doesn't exist at '/Engine/ViewStyle'
--> Sources/Engine/Sources/ViewStyle.swift:9:82-9:86
7 | /// A protocol that defines an appearance and interaction behaviour for a related ``ViewStyledView``.
8 | ///
9 + /// To configure the style for a view hierarchy, define the desired style with ``View/styledViewStyle(_:style:)``.
10 | ///
11 | /// # Creating Custom Styles
warning: 'View' doesn't exist at '/Engine/ViewStyle'
--> Sources/Engine/Sources/ViewStyle.swift:16:21-16:25
14 | /// view that conforms to ``ViewStyledView``. This style will be define the
15 | /// configuration parameters for the styled view. Lastly, create an extension on `View`
16 + /// that uses the ``View/styledViewStyle(_:style:)`` to apply custom styles to the view hierarchy.
17 | ///
18 | /// If your configuration requires parameters that are views, use the ``ViewAlias``
warning: 'View' doesn't exist at '/Engine/ViewStyle'
--> Sources/Engine/Sources/ViewStyle.swift:23:85-23:89
21 | /// > Important: When using a configuration that has an ``ViewAlias``'s you cannot use
22 | /// your ``ViewStyledView``. You will need to create a new view that uses the ``ViewStyledView``
23 + /// in it's `Body` in addition to defining the type-erased view parameters with ``View/viewAlias(_:source:)``
24 | ///
25 | /// > Tip: You can use the ``@StyledView`` macro to automate the creation of a styled view for any `View`
warning: '@StyledView' doesn't exist at '/Engine/ViewStyle'
--> Sources/Engine/Sources/ViewStyle.swift:25:30-25:41
23 | /// in it's `Body` in addition to defining the type-erased view parameters with ``View/viewAlias(_:source:)``
24 | ///
25 + /// > Tip: You can use the ``@StyledView`` macro to automate the creation of a styled view for any `View`
26 | ///
27 | /// ```
warning: '@StyledView' doesn't exist at '/Engine/ViewStyledView'
--> Sources/Engine/Sources/ViewStyle.swift:172:83-172:94
170 | /// A protocol that defines a view that is styled with the related ``ViewStyle``.
171 | ///
172 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
173 | ///
174 | @MainActor @preconcurrency
warning: '@StyledView' doesn't exist at '/Engine/ViewStyleModifier'
--> Sources/Engine/Sources/ViewStyle.swift:186:83-186:94
184 | /// views in the view hierarchy.
185 | ///
186 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
187 | @frozen
188 | public struct ViewStyleModifier<
warning: '@StyledView' doesn't exist at '/Engine/SwiftUICore/View/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/SymmetricallyScaledText/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/VariadicViewAdapter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/SectionFooter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/TextReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/SectionView/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/EmptyShape/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewAdapter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicSectionView/Subview/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputAliasReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicView/Subview/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewUpdateDebugView/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputKeyValueReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicView/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/OptionalAdapter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputList/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/LayoutAdapter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/PreferenceKeyValueReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:256:87-256:98
254 | /// views in the view hierarchy.
255 | ///
256 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
257 | @inlinable
258 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/VariadicViewAdapter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/SymmetricallyScaledText/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicSectionView/Subview/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/TextReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewUpdateDebugView/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputKeyValueReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/SwiftUICore/View/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicView/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputList/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/LayoutAdapter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewAdapter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputAliasReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicView/Subview/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/OptionalAdapter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/SectionView/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/SectionFooter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/PreferenceKeyValueReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/EmptyShape/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:272:87-272:98
270 | /// the current style context of the view.
271 | ///
272 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
273 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
274 | @inlinable
warning: 'TagTrait' doesn't exist at '/Engine/ViewTraitKey'
--> Sources/Engine/Sources/ViewTraitKey.swift:13:10-13:18
11 | /// - ``ZIndexTrait``
12 | /// - ``LayoutPriorityTrait``
13 + /// - ``TagTrait``
14 | ///
15 | /// See Also:
Finished building documentation for 'Engine' (19.69s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/nathantannar4/engine/2.1.4
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updating https://github.com/swiftlang/swift-syntax
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.49s)
Updated https://github.com/swiftlang/swift-syntax (0.83s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 600.0.1 (1.52s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.59s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.89s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.56s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Compiling SymbolKit Identifier.swift
[8/53] Compiling SymbolKit KindIdentifier.swift
[9/53] Compiling SymbolKit Location.swift
[10/53] Compiling SymbolKit Mutability.swift
[11/53] Compiling SymbolKit Relationship.swift
[12/53] Compiling SymbolKit RelationshipKind.swift
[13/53] Compiling SymbolKit SourceOrigin.swift
[14/53] Compiling SymbolKit GenericConstraints.swift
[15/53] Compiling SymbolKit Swift.swift
[16/57] Compiling SymbolKit GenericConstraint.swift
[17/57] Compiling SymbolKit GenericParameter.swift
[18/57] Compiling SymbolKit Generics.swift
[19/57] Compiling SymbolKit Namespace.swift
[20/57] Emitting module Snippets
[21/57] Compiling Snippets Snippet.swift
[22/57] Compiling SymbolKit Mixin+Equals.swift
[23/57] Compiling SymbolKit Mixin+Hash.swift
[24/57] Compiling SymbolKit Mixin.swift
[25/57] Compiling SymbolKit LineList.swift
[26/57] Compiling SymbolKit Position.swift
[27/57] Emitting module SymbolKit
[28/57] Compiling SymbolKit SourceRange.swift
[29/57] Compiling SymbolKit Metadata.swift
[30/57] Compiling SymbolKit Module.swift
[31/57] Compiling SymbolKit OperatingSystem.swift
[32/57] Compiling SymbolKit Platform.swift
[33/57] Compiling SymbolKit DeclarationFragments.swift
[34/57] Compiling SymbolKit Fragment.swift
[35/57] Compiling SymbolKit FragmentKind.swift
[36/57] Compiling SymbolKit FunctionParameter.swift
[37/57] Compiling SymbolKit FunctionSignature.swift
[38/57] Compiling SymbolKit SemanticVersion.swift
[39/57] Compiling SymbolKit AccessControl.swift
[40/57] Compiling SymbolKit Availability.swift
[41/57] Compiling SymbolKit AvailabilityItem.swift
[42/57] Compiling SymbolKit Domain.swift
[43/57] Compiling SymbolKit Symbol.swift
[44/57] Compiling SymbolKit SymbolKind.swift
[45/57] Compiling SymbolKit SymbolGraph.swift
[46/57] Compiling SymbolKit GraphCollector.swift
[47/57] Compiling SymbolKit Names.swift
[48/57] Compiling SymbolKit SPI.swift
[49/57] Compiling SymbolKit Snippet.swift
[50/57] Compiling SymbolKit Extension.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.59s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/23] Compiling EngineCore ViewModifierVisitor.swift
[3/23] Compiling EngineCore ViewTraitKeyVisitor.swift
[4/23] Compiling EngineCore AnyViewVisitor.swift
[5/23] Compiling EngineCore ConditionalContentVisitor.swift
[6/23] Compiling EngineCore CustomViewVisitor.swift
[7/25] Compiling EngineCore EmptyViewVisitor.swift
[8/25] Compiling EngineCore EnvironmentKeyVisitor.swift
[9/25] Compiling EngineCore ForEachVisitor.swift
[10/25] Compiling EngineCore TupleViewVisitor.swift
[11/25] Compiling EngineCore TupleVisitor.swift
[12/25] Compiling EngineCore Runtime.swift
[13/25] Compiling EngineCore SectionVisitor.swift
[14/25] Compiling EngineCore OptionalVisitor.swift
[15/25] Compiling EngineCore ProtocolConformance.swift
[16/25] Emitting module EngineCore
[17/25] Compiling EngineCore TypeDescriptor.swift
[18/25] Compiling EngineCore TypeIdentifier.swift
[19/25] Compiling EngineCore TypeMetadata.swift
[20/25] Compiling EngineCore UnsafePointer.swift
[21/25] Compiling EngineCore GroupVisitor.swift
[22/25] Compiling EngineCore ModifiedContentVisitor.swift
[23/25] Compiling EngineCore MultiViewVisitor.swift
[24/25] Compiling EngineCore ViewTypeIdentifier.swift
[25/25] Compiling EngineCore ViewVisitor.swift
[26/105] Compiling Engine ViewInputConditionalModifier.swift
[27/105] Compiling Engine ViewInputKey.swift
[28/105] Compiling Engine ViewInputs.swift
[29/105] Compiling Engine ViewInputsVisitor.swift
[30/105] Compiling Engine ViewModifierBuilder.swift
[31/105] Compiling Engine ViewModifierContent.swift
[32/105] Compiling Engine ViewModifierVisitor.swift
[33/105] Compiling Engine ViewOutputAlias.swift
[34/113] Compiling Engine ConditionalLayout.swift
[35/113] Compiling Engine ConditionalShape.swift
[36/113] Compiling Engine ConditionalView.swift
[37/113] Compiling Engine EmptyShape.swift
[38/113] Compiling Engine Environment+Extensions.swift
[39/113] Compiling Engine EnvironmentKeyVisitor.swift
[40/113] Compiling Engine EnvironmentOrValue.swift
[41/113] Compiling Engine EnvironmentValueReader.swift
[42/113] Compiling Engine EnvironmentValuesVisitor.swift
[43/113] Compiling Engine LayoutAdapter.swift
[44/113] Compiling Engine LayoutBuilder.swift
[45/113] Compiling Engine LayoutThatFits.swift
[46/113] Compiling Engine MainActor.swift
[47/113] Compiling Engine MultiViewAdapter.swift
[48/113] Compiling Engine MultiViewVisitor.swift
[49/113] Compiling Engine Never.swift
[50/113] Compiling Engine OptionalAdapter.swift
[51/113] Compiling Engine PreferenceKeyReader.swift
[52/113] Emitting module Engine
[53/113] Compiling Engine AnyAnimatableData.swift
[54/113] Compiling Engine AnyShape.swift
[55/113] Compiling Engine AnyShapeStyle+Extensions.swift
[56/113] Compiling Engine AnyView.swift
[57/113] Compiling Engine AnyViewModifier.swift
[58/113] Compiling Engine AttributedString+Extensions.swift
[59/113] Compiling Engine BindingTransform.swift
[60/113] Compiling Engine Color+Extensions.swift
[61/113] Compiling Engine ConditionalContent.swift
[62/113] Compiling Engine Font+Extensions.swift
[63/113] Compiling Engine ForEachSubview.swift
[64/113] Compiling Engine GraphInputs.swift
[65/113] Compiling Engine Group.swift
[66/113] Compiling Engine HostingController.swift
[67/113] Compiling Engine HostingView.swift
[68/113] Compiling Engine Image+Extensions.swift
[69/113] Compiling Engine IsNilTransform.swift
[70/113] Compiling Engine IsNotNilTransform.swift
[71/113] Compiling Engine StaticConditionalContent.swift
[72/113] Compiling Engine StaticConditionalModifier.swift
[73/113] Compiling Engine StaticContent.swift
[74/113] Compiling Engine StaticModifier.swift
[75/113] Compiling Engine StyleContext.swift
[76/113] Compiling Engine SymmetricallyScaledText.swift
[77/113] Compiling Engine Text+Extensions.swift
[78/113] Compiling Engine TextAttachment.swift
[79/113] Compiling Engine TextBuilder.swift
[80/113] Compiling Engine PrimitiveView.swift
[81/113] Compiling Engine PrimitiveViewModifier.swift
[82/113] Compiling Engine PropertyList.swift
[83/113] Compiling Engine ProposedSize.swift
[84/113] Compiling Engine SectionView.swift
[85/113] Compiling Engine ShapeAdapter.swift
[86/113] Compiling Engine ShapeBuilder.swift
[87/113] Compiling Engine StateOrBinding.swift
[88/113] Compiling Engine StaticCondition.swift
[89/113] Compiling Engine VariadicView.swift
[90/113] Compiling Engine VersionedDynamicProperty.swift
[91/113] Compiling Engine VersionedView.swift
[92/113] Compiling Engine VersionedViewInput.swift
[93/113] Compiling Engine VersionedViewModifier.swift
[94/113] Compiling Engine ViewAdapter.swift
[95/113] Compiling Engine ViewAlias.swift
[96/113] Compiling Engine ViewInputConditionalContent.swift
[97/113] Compiling Engine TextReader.swift
[98/113] Compiling Engine TraitValueKey.swift
[99/113] Compiling Engine Transaction.swift
[100/113] Compiling Engine UnaryViewAdaptor.swift
[101/113] Compiling Engine UnaryViewModifier.swift
[102/113] Compiling Engine UnwrapTransform.swift
[103/113] Compiling Engine UpdatePhase.swift
[104/113] Compiling Engine UserInterfaceIdiomContent.swift
[105/113] Compiling Engine UserInterfaceIdiomModifier.swift
[106/113] Compiling Engine ViewOutputKey.swift
[107/113] Compiling Engine ViewStackAxisReader.swift
[108/113] Compiling Engine ViewStyle.swift
[109/113] Compiling Engine ViewTraitKey.swift
[110/113] Compiling Engine ViewTraitKeyVisitor.swift
[111/113] Compiling Engine ViewUpdateDebug.swift
[112/113] Compiling Engine ViewVisitor.swift
[113/113] Compiling Engine module.swift
Build of target: 'Engine' complete! (2.87s)
Target: EngineCore
Extracting symbol information for 'EngineCore'...
Finished extracting symbol information for 'EngineCore'. (0.67s)
Building documentation for 'EngineCore'...
Finished building documentation for 'EngineCore' (0.14s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/nathantannar4/engine/2.1.4
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.39s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
Build of target: 'EngineCore' complete! (0.40s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/nathantannar4/engine/2.1.4/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/nathantannar4/engine/2.1.4/linkable-paths.json
Target: EngineMacros
Extracting symbol information for 'EngineMacros'...
Finished extracting symbol information for 'EngineMacros'. (15.81s)
Building documentation for 'EngineMacros'...
warning: 'ViewStyle' doesn't exist at '/EngineMacros/StyledView()'
--> Sources/EngineMacros/StyledView.swift:10:54-10:63
8 | /// A macro that adds the necessary components of a ``StyledView``
9 | ///
10 + /// A ``StyledView`` is an easier way to adopt the ``ViewStyle`` API
11 | /// to transform a `View` into one that can be styled. The `body` of a
12 | /// ``StyledView`` will become the default style if no other styled is applied.
warning: 'ViewStyle' doesn't exist at '/EngineMacros/StyledView()'
--> Sources/EngineMacros/StyledView.swift:54:25-54:34
52 | /// This showcases the major benefit with the view style approach as it allows for multiple styles
53 | /// to be composed and reused together. The ``StyledView`` used within custom style body
54 + /// will use the next ``ViewStyle`` if one exists, or the default style - which is the `body` of
55 | /// the ``StyledView``.
56 | ///
warning: '@StyledView' doesn't exist at '/EngineMacros/StyledView'
--> Sources/EngineMacros/StyledView.swift:98:47-98:58
96 | public macro StyledView() = #externalMacro(module: "EngineMacrosCore", type: "StyledViewMacro")
97 |
98 + /// A protocol intended to be used with the ``@StyledView`` macro define a
99 | /// ``ViewStyle`` and all it's related components.
100 | @MainActor @preconcurrency
warning: 'ViewStyle' doesn't exist at '/EngineMacros/StyledView'
--> Sources/EngineMacros/StyledView.swift:99:7-99:16
97 |
98 | /// A protocol intended to be used with the ``@StyledView`` macro define a
99 + /// ``ViewStyle`` and all it's related components.
100 | @MainActor @preconcurrency
101 | public protocol StyledView: PrimitiveView, DynamicProperty {
Finished building documentation for 'EngineMacros' (0.04s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/nathantannar4/engine/2.1.4
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.40s)
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
[2/9] Compiling SwiftSyntax510 Empty.swift
[3/9] Emitting module SwiftSyntax510
[4/9] Compiling SwiftSyntax509 Empty.swift
[5/9] Compiling SwiftSyntax600 Empty.swift
[6/9] Emitting module SwiftSyntax509
[7/9] Emitting module SwiftSyntax600
[8/74] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[9/74] Compiling SwiftSyntax SyntaxChildren.swift
[10/74] Compiling SwiftSyntax SyntaxCollection.swift
[11/74] Compiling SwiftSyntax SyntaxHashable.swift
[12/74] Compiling SwiftSyntax SyntaxIdentifier.swift
[13/74] Compiling SwiftSyntax SyntaxNodeFactory.swift
[14/74] Compiling SwiftSyntax SyntaxNodeStructure.swift
[15/81] Compiling SwiftSyntax SyntaxProtocol.swift
[16/81] Compiling SwiftSyntax SyntaxText.swift
[17/81] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[18/81] Compiling SwiftSyntax TokenDiagnostic.swift
[19/81] Compiling SwiftSyntax TokenSequence.swift
[20/81] Compiling SwiftSyntax TokenSyntax.swift
[21/81] Compiling SwiftSyntax Trivia.swift
[22/81] Compiling SwiftSyntax Identifier.swift
[23/81] Compiling SwiftSyntax MemoryLayout.swift
[24/81] Compiling SwiftSyntax MissingNodeInitializers.swift
[25/81] Compiling SwiftSyntax RawSyntax.swift
[26/81] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[27/81] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[28/81] Compiling SwiftSyntax RawSyntaxTokenView.swift
[29/81] Compiling SwiftSyntax Tokens.swift
[30/81] Compiling SwiftSyntax TriviaPieces.swift
[31/81] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[32/81] Compiling SwiftSyntax RawSyntaxNodesC.swift
[33/81] Compiling SwiftSyntax RawSyntaxNodesD.swift
[34/81] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[35/81] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[36/81] Emitting module SwiftSyntax
[37/81] Compiling SwiftSyntax AbsolutePosition.swift
[38/81] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[39/81] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[40/81] Compiling SwiftSyntax Assert.swift
[41/81] Compiling SwiftSyntax BumpPtrAllocator.swift
[42/81] Compiling SwiftSyntax CommonAncestor.swift
[43/81] Compiling SwiftSyntax Convenience.swift
[44/81] Compiling SwiftSyntax CustomTraits.swift
[45/81] Compiling SwiftSyntax SyntaxCollections.swift
[46/81] Compiling SwiftSyntax SyntaxEnum.swift
[47/81] Compiling SwiftSyntax SyntaxKind.swift
[48/81] Compiling SwiftSyntax SyntaxRewriter.swift
[49/81] Compiling SwiftSyntax SyntaxTraits.swift
[50/81] Compiling SwiftSyntax SyntaxVisitor.swift
[51/81] Compiling SwiftSyntax TokenKind.swift
[52/81] Compiling SwiftSyntax SourceEdit.swift
[53/81] Compiling SwiftSyntax SourceLength.swift
[54/81] Compiling SwiftSyntax SourceLocation.swift
[55/81] Compiling SwiftSyntax SourcePresence.swift
[56/81] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[57/81] Compiling SwiftSyntax Syntax.swift
[58/81] Compiling SwiftSyntax SyntaxArena.swift
[59/81] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[60/81] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[61/81] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[62/81] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[63/81] Compiling SwiftSyntax RawSyntaxValidation.swift
[64/81] Compiling SwiftSyntax SyntaxNodesAB.swift
[65/81] Compiling SwiftSyntax SyntaxNodesC.swift
[66/81] Compiling SwiftSyntax SyntaxNodesD.swift
[67/81] Compiling SwiftSyntax SyntaxNodesEF.swift
[68/81] Compiling SwiftSyntax SyntaxNodesGHI.swift
[69/81] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[70/81] Compiling SwiftSyntax SyntaxNodesOP.swift
[71/81] Compiling SwiftSyntax SyntaxNodesQRS.swift
[72/81] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[73/81] Compiling SwiftSyntax Utils.swift
[74/81] Compiling SwiftSyntax ChildNameForKeyPath.swift
[75/81] Compiling SwiftSyntax Keyword.swift
[76/81] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[77/81] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[78/81] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[79/81] Compiling SwiftSyntax SyntaxBaseNodes.swift
[80/139] Compiling SwiftDiagnostics Message.swift
[81/140] Emitting module SwiftDiagnostics
[82/140] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[83/140] Compiling SwiftBasicFormat Syntax+Extensions.swift
[84/140] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[85/140] Compiling SwiftDiagnostics Note.swift
[86/140] Compiling SwiftDiagnostics FixIt.swift
[87/140] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[88/140] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[89/140] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[90/140] Compiling SwiftDiagnostics Diagnostic.swift
[91/140] Compiling SwiftDiagnostics Convenience.swift
[92/140] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[93/140] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[94/140] Emitting module SwiftBasicFormat
[95/140] Compiling SwiftBasicFormat BasicFormat.swift
[96/140] Compiling SwiftBasicFormat InferIndentation.swift
[97/140] Compiling SwiftParser TokenConsumer.swift
[98/140] Compiling SwiftParser TokenPrecedence.swift
[99/140] Compiling SwiftParser TokenSpec.swift
[100/140] Compiling SwiftParser TokenSpecSet.swift
[101/144] Compiling SwiftParser UnicodeScalarExtensions.swift
[102/144] Compiling SwiftParser Lookahead.swift
[103/144] Compiling SwiftParser LoopProgressCondition.swift
[104/144] Compiling SwiftParser Modifiers.swift
[105/144] Compiling SwiftParser Names.swift
[106/144] Compiling SwiftParser TopLevel.swift
[107/144] Compiling SwiftParser TriviaParser.swift
[108/144] Compiling SwiftParser Types.swift
[109/144] Compiling SwiftParser ExperimentalFeatures.swift
[110/144] Compiling SwiftParser Nominals.swift
[111/144] Compiling SwiftParser Parameters.swift
[112/144] Compiling SwiftParser ParseSourceFile.swift
[113/144] Compiling SwiftParser Parser.swift
[114/144] Compiling SwiftParser Patterns.swift
[115/144] Compiling SwiftParser StringLiterals.swift
[116/144] Compiling SwiftParser SwiftParserCompatibility.swift
[117/144] Compiling SwiftParser SwiftVersion.swift
[118/144] Compiling SwiftParser SyntaxUtils.swift
[119/144] Compiling SwiftParser Recovery.swift
[120/144] Compiling SwiftParser Specifiers.swift
[121/144] Compiling SwiftParser Statements.swift
[122/144] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[123/144] Compiling SwiftParser Directives.swift
[124/144] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[125/144] Compiling SwiftParser Expressions.swift
[126/144] Compiling SwiftParser IncrementalParseTransition.swift
[127/144] Compiling SwiftParser IsValidIdentifier.swift
[128/144] Emitting module SwiftParser
[129/144] Compiling SwiftParser Attributes.swift
[130/144] Compiling SwiftParser Availability.swift
[131/144] Compiling SwiftParser CharacterInfo.swift
[132/144] Compiling SwiftParser CollectionNodes+Parsable.swift
[133/144] Compiling SwiftParser Declarations.swift
[134/144] Compiling SwiftParser Cursor.swift
[135/144] Compiling SwiftParser Lexeme.swift
[136/144] Compiling SwiftParser LexemeSequence.swift
[137/144] Compiling SwiftParser Lexer.swift
[138/144] Compiling SwiftParser RegexLiteralLexer.swift
[139/144] Compiling SwiftParser IsLexerClassified.swift
[140/144] Compiling SwiftParser LayoutNodes+Parsable.swift
[141/144] Compiling SwiftParser Parser+TokenSpecSet.swift
[142/144] Compiling SwiftParser TokenSpecStaticMembers.swift
[143/167] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[144/168] Compiling SwiftOperators PrecedenceGroup.swift
[145/168] Compiling SwiftOperators OperatorTable.swift
[146/169] Compiling SwiftOperators PrecedenceGraph.swift
[147/169] Compiling SwiftOperators OperatorTable+Semantics.swift
[148/169] Compiling SwiftOperators OperatorTable+Defaults.swift
[149/169] Compiling SwiftOperators OperatorError+Diagnostics.swift
[150/169] Compiling SwiftOperators OperatorError.swift
[151/169] Compiling SwiftOperators Operator.swift
[152/169] Emitting module SwiftOperators
[153/169] Compiling SwiftOperators OperatorTable+Folding.swift
[154/169] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[155/169] Emitting module SwiftParserDiagnostics
[156/169] Compiling SwiftOperators SyntaxSynthesis.swift
[157/169] Compiling SwiftParserDiagnostics Utils.swift
[158/169] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[159/169] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[160/169] Compiling SwiftParserDiagnostics PresenceUtils.swift
[161/169] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[162/169] Compiling SwiftParserDiagnostics MissingNodesError.swift
[163/169] Compiling SwiftParserDiagnostics MissingTokenError.swift
[164/169] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[165/169] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[166/169] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[167/169] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[168/184] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[169/184] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[170/185] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[171/185] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[172/185] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[173/185] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[174/185] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[175/185] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[176/185] Compiling SwiftSyntaxBuilder Indenter.swift
[177/185] Compiling SwiftSyntaxBuilder ListBuilder.swift
[178/185] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[179/185] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[180/185] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[181/185] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[182/185] Emitting module SwiftSyntaxBuilder
[183/185] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[184/203] Compiling SwiftSyntaxMacros Macro.swift
[185/203] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[186/203] Compiling SwiftSyntaxMacros PreambleMacro.swift
[187/203] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[188/203] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[189/203] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[190/203] Compiling SwiftSyntaxMacros Macro+Format.swift
[191/203] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[192/203] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[193/203] Compiling SwiftSyntaxMacros MemberMacro.swift
[194/203] Compiling SwiftSyntaxMacros PeerMacro.swift
[195/203] Compiling SwiftSyntaxMacros AttachedMacro.swift
[196/203] Compiling SwiftSyntaxMacros BodyMacro.swift
[197/204] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[198/204] Compiling SwiftSyntaxMacros AccessorMacro.swift
[199/204] Emitting module SwiftSyntaxMacros
[200/204] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[201/204] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[202/204] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[203/214] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[204/214] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[205/214] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[206/214] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[207/214] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[208/214] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[209/214] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[210/214] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[211/214] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[212/214] Emitting module SwiftSyntaxMacroExpansion
[213/226] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[214/226] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[215/226] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[216/226] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[217/226] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[218/226] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[219/227] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[220/227] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[221/227] Emitting module SwiftCompilerPluginMessageHandling
[222/227] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[223/227] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[224/227] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[225/227] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[226/229] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[227/229] Emitting module SwiftCompilerPlugin
[228/232] Compiling EngineMacrosCore EngineMacrosCore.swift
[229/232] Emitting module EngineMacrosCore
[230/232] Compiling EngineMacrosCore StyledViewMacro.swift
[230/231] Linking EngineMacrosCore-tool
[232/233] Emitting module EngineMacros
[233/233] Compiling EngineMacros StyledView.swift
Build of target: 'EngineMacros' complete! (15.67s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/nathantannar4/engine/2.1.4/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/nathantannar4/engine/2.1.4/linkable-paths.json
60314
373 /Users/admin/builder/spi-builder-workspace/.docs/nathantannar4/engine/2.1.4
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/nathantannar4/engine/2.1.4
File count: 60314
Doc size: 373.0MB
Preparing doc bundle ...
Uploading prod-nathantannar4-engine-2.1.4-2cbc2f15.zip to s3://spi-docs-inbox/prod-nathantannar4-engine-2.1.4-2cbc2f15.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.