Build Information
Successful build of Engine, reference main (3a79c3
), with Swift 6.1 for macOS (SPM) on 14 Jun 2025 06:11:52 UTC.
Swift 6 data race errors: 103
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
/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/ViewStyle.swift:280: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
278 |
279 | private struct ViewStylesKey: EnvironmentKey {
280 | 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
281 | }
282 |
:
288 | }
289 |
290 | private struct ViewStylesBox {
| `- note: consider making struct 'ViewStylesBox' conform to the 'Sendable' protocol
291 | private var storage: [UnsafeRawPointer: [AnyViewStyle]] = [:]
292 |
/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) {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:343:38: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
341 | inputs[ViewStyleContext<Self>.self] = .styling
342 | return MainActor.unsafe {
343 | Body._makeView(view: view[\.body], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
344 | }
345 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:343:60: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
341 | inputs[ViewStyleContext<Self>.self] = .styling
342 | return MainActor.unsafe {
343 | Body._makeView(view: view[\.body], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
344 | }
345 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:347:58: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
345 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
346 | return MainActor.unsafe {
347 | ViewStyledViewBody<Self>._makeView(view: view[\.content], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
348 | }
349 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:347:83: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
345 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
346 | return MainActor.unsafe {
347 | ViewStyledViewBody<Self>._makeView(view: view[\.content], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
348 | }
349 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:353:65: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
351 | inputs[ViewStyleContext<Self>.self] = .unstyled
352 | return MainActor.unsafe {
353 | ViewStyledViewDefaultBody<Self>._makeView(view: view[\.defaultContent], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
354 | }
355 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:353:97: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
351 | inputs[ViewStyleContext<Self>.self] = .unstyled
352 | return MainActor.unsafe {
353 | ViewStyledViewDefaultBody<Self>._makeView(view: view[\.defaultContent], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
354 | }
355 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:368:42: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
366 | inputs[ViewStyleContext<Self>.self] = .styling
367 | return MainActor.unsafe {
368 | Body._makeViewList(view: view[\.body], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
369 | }
370 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:368:64: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
366 | inputs[ViewStyleContext<Self>.self] = .styling
367 | return MainActor.unsafe {
368 | Body._makeViewList(view: view[\.body], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
369 | }
370 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:372:62: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
370 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
371 | return MainActor.unsafe {
372 | ViewStyledViewBody<Self>._makeViewList(view: view[\.content], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
373 | }
374 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:372:87: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
370 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
371 | return MainActor.unsafe {
372 | ViewStyledViewBody<Self>._makeViewList(view: view[\.content], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
373 | }
374 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:378:69: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
376 | inputs[ViewStyleContext<Self>.self] = .unstyled
377 | return MainActor.unsafe {
378 | ViewStyledViewDefaultBody<Self>._makeViewList(view: view[\.defaultContent], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
379 | }
380 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:378:101: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
376 | inputs[ViewStyleContext<Self>.self] = .unstyled
377 | return MainActor.unsafe {
378 | ViewStyledViewDefaultBody<Self>._makeViewList(view: view[\.defaultContent], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
379 | }
380 | }
[207/216] Compiling Engine module.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputAlias.swift:186:17: warning: main actor-isolated static method 'reduce(value:nextValue:)' cannot be used to satisfy nonisolated requirement from protocol 'ViewOutputKey'; this is an error in the Swift 6 language mode
174 | private struct ViewOutputAliasKey<
175 | Alias: ViewOutputAlias
176 | >: ViewOutputKey, ViewAlias {
| `- note: add '@preconcurrency' to the 'ViewOutputKey' conformance to defer isolation checking to run time
177 |
178 | var alias: Alias
:
184 | typealias Content = Alias.Content
185 |
186 | static func reduce(
| |- warning: main actor-isolated static method 'reduce(value:nextValue:)' cannot be used to satisfy nonisolated requirement from protocol 'ViewOutputKey'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'reduce(value:nextValue:)' to make this static method not isolated to the actor
187 | value: inout Value,
188 | nextValue: () -> Value
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewOutputKey.swift:22:17: note: mark the protocol requirement 'reduce(value:nextValue:)' 'async' to allow actor-isolated conformances
20 | associatedtype Content: View = AnyView
21 | typealias Value = ViewOutputList<Content>
22 | static func reduce(value: inout Value, nextValue: () -> Value)
| `- note: mark the protocol requirement 'reduce(value:nextValue:)' 'async' to allow actor-isolated conformances
23 | }
24 |
/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/ViewStyle.swift:280: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
278 |
279 | private struct ViewStylesKey: EnvironmentKey {
280 | 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
281 | }
282 |
:
288 | }
289 |
290 | private struct ViewStylesBox {
| `- note: consider making struct 'ViewStylesBox' conform to the 'Sendable' protocol
291 | private var storage: [UnsafeRawPointer: [AnyViewStyle]] = [:]
292 |
/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) {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:343:38: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
341 | inputs[ViewStyleContext<Self>.self] = .styling
342 | return MainActor.unsafe {
343 | Body._makeView(view: view[\.body], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
344 | }
345 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:343:60: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
341 | inputs[ViewStyleContext<Self>.self] = .styling
342 | return MainActor.unsafe {
343 | Body._makeView(view: view[\.body], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
344 | }
345 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:347:58: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
345 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
346 | return MainActor.unsafe {
347 | ViewStyledViewBody<Self>._makeView(view: view[\.content], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
348 | }
349 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:347:83: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
345 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
346 | return MainActor.unsafe {
347 | ViewStyledViewBody<Self>._makeView(view: view[\.content], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
348 | }
349 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:353:65: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
351 | inputs[ViewStyleContext<Self>.self] = .unstyled
352 | return MainActor.unsafe {
353 | ViewStyledViewDefaultBody<Self>._makeView(view: view[\.defaultContent], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
354 | }
355 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:353:97: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
351 | inputs[ViewStyleContext<Self>.self] = .unstyled
352 | return MainActor.unsafe {
353 | ViewStyledViewDefaultBody<Self>._makeView(view: view[\.defaultContent], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
354 | }
355 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:368:42: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
366 | inputs[ViewStyleContext<Self>.self] = .styling
367 | return MainActor.unsafe {
368 | Body._makeViewList(view: view[\.body], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
369 | }
370 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:368:64: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
366 | inputs[ViewStyleContext<Self>.self] = .styling
367 | return MainActor.unsafe {
368 | Body._makeViewList(view: view[\.body], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
369 | }
370 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:372:62: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
370 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
371 | return MainActor.unsafe {
372 | ViewStyledViewBody<Self>._makeViewList(view: view[\.content], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
373 | }
374 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:372:87: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
370 | } else if inputs[ViewStyleInput<Self>.self].last != nil {
371 | return MainActor.unsafe {
372 | ViewStyledViewBody<Self>._makeViewList(view: view[\.content], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
373 | }
374 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:378:69: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
376 | inputs[ViewStyleContext<Self>.self] = .unstyled
377 | return MainActor.unsafe {
378 | ViewStyledViewDefaultBody<Self>._makeViewList(view: view[\.defaultContent], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
379 | }
380 | }
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Sources/ViewStyle.swift:378:101: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
376 | inputs[ViewStyleContext<Self>.self] = .unstyled
377 | return MainActor.unsafe {
378 | ViewStyledViewDefaultBody<Self>._makeViewList(view: view[\.defaultContent], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
379 | }
380 | }
<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
[215/274] 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
[216/274] 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/275] 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
[218/275] 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
[219/275] 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
[220/275] 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
[221/275] 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
[222/275] 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/275] 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
[224/275] 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
[225/275] 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
[226/275] 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
[227/275] 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
[228/275] 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
[229/275] 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
[230/275] 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
[231/275] 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
[232/275] 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
[233/275] 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
[234/275] 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
[235/275] 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
[236/279] 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
[237/279] 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
[238/279] 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
[239/279] 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
[240/279] 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
[241/279] 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
[242/279] 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
[243/279] 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
[244/279] 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
[245/279] 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
[246/279] 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
[247/279] 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
[248/279] 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
[249/279] 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
[250/279] 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
[251/279] 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
[252/279] 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
[253/279] 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
[254/279] 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
[255/279] 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
[256/279] 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
[257/279] 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
[258/279] 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
[259/279] 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
[260/279] 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
[261/279] 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
[262/279] 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
[263/279] 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
[264/279] 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
[265/279] 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
[266/279] 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
[267/279] 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
[268/279] 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
[269/279] 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
[270/279] 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
[271/279] 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
[272/279] 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
[273/279] 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
[274/279] 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
[275/279] 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
[276/279] 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
[277/279] 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
[278/302] 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
[279/303] 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
[280/304] 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
[281/304] 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/304] 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
[283/304] 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
[284/304] 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
[285/304] 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
[286/304] 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
[287/304] 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/304] 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
[289/304] 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/304] 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
[291/304] 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
[292/304] 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
[293/304] 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
[294/304] 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
[295/304] 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/304] 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/304] 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
[298/304] 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
[299/304] 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
[300/304] 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
[301/304] 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
[302/304] 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
[303/319] 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
[304/319] 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
[305/319] 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
[306/319] 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
[307/319] 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
[308/319] 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
[309/319] 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
[310/319] 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
[311/319] 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
[312/319] 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/319] 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/319] 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
[315/319] 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
[316/319] 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
[317/319] 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
[318/320] 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
[319/338] 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
[320/339] 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
[321/339] 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
[322/339] 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
[323/339] 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
[324/339] 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
[325/339] 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
[326/339] 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
[327/339] 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
[328/339] 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
[329/339] 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
[330/339] 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
[331/339] 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
[332/339] 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
[333/339] 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
[334/339] 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
[335/339] 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
[336/339] 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
[337/339] 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
[338/349] 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
[339/349] 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
[340/349] 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
[341/349] 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
[342/349] 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
[343/349] 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
[344/349] 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/349] 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
[346/349] 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
[347/349] 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
[348/361] 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
[349/362] 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/362] 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
[351/362] 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
[352/362] 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
[353/362] 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
[354/362] 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
[355/362] 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
[356/362] 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
[357/362] 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
[358/362] 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
[359/362] 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
[360/362] 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
[361/364] 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
[362/364] 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
[363/367] Compiling EngineMacrosCore EngineMacrosCore.swift
[364/367] Compiling EngineMacrosCore StyledViewMacro.swift
[365/367] Emitting module EngineMacrosCore
[365/367] Write Objects.LinkFileList
[366/367] Linking EngineMacrosCore-tool
[368/369] Compiling EngineMacros StyledView.swift
/Users/admin/builder/spi-builder-workspace/Sources/EngineMacros/StyledView.swift:112:35: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
110 | ) -> _ViewOutputs {
111 | MainActor.unsafe {
112 | _Body._makeView(view: view[\._body], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
113 | }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/EngineMacros/StyledView.swift:112:58: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
110 | ) -> _ViewOutputs {
111 | MainActor.unsafe {
112 | _Body._makeView(view: view[\._body], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
113 | }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/EngineMacros/StyledView.swift:121:39: warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
119 | ) -> _ViewListOutputs {
120 | MainActor.unsafe {
121 | _Body._makeViewList(view: view[\._body], inputs: inputs)
| |- warning: sending 'view' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'view' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
122 | }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/EngineMacros/StyledView.swift:121:62: warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
119 | ) -> _ViewListOutputs {
120 | MainActor.unsafe {
121 | _Body._makeViewList(view: view[\._body], inputs: inputs)
| |- warning: sending 'inputs' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'inputs' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
122 | }
123 | }
[369/369] Emitting module EngineMacros
Build complete! (28.28s)
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" : [
"EngineBenchmarkTests.swift",
"EngineCoreMultiViewVisitorTests.swift",
"EngineCoreRuntimeTests.swift",
"EngineCoreViewVisitorTests.swift",
"EngineMacroTests.swift",
"EngineRuntimeTests.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/Animation+Resolved.swift",
"Sources/AnyAnimatableData.swift",
"Sources/AnyShape.swift",
"Sources/AnyShapeStyle+Extensions.swift",
"Sources/AnyView.swift",
"Sources/AnyViewModifier.swift",
"Sources/AttributedString+Extensions.swift",
"Sources/AttributedStringReader.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/StyleInputCondition.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/main
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 4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'Engine'...
Finished extracting symbol information for 'Engine'. (8.96s)
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'
| ╰─suggestion: Replace 'VersionedProperty' with 'V7Property'
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:23:40-23:45
21 | }
22 |
23 + /// A ``ViewInput`` that's ``ViewInput/Value`` is a `Bool` that defaults to `true`.
| ╰─suggestion: Replace 'Value' with 'value'
24 | public protocol ViewInputFlag: ViewInput, ViewInputKey, ViewInputsCondition where Key == Self, Value == Bool { }
25 |
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/MultiViewSubviewVisitor/Subview/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicView/Subview/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/PreferenceKeyReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/SectionHeader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/LayoutAdapter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/EmptyShape/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/UnaryViewAdaptor/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/StaticContent/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewInputConditionalContent/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/SwiftUICore/View/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputAliasReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicSectionView/Subview/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/SectionFooter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/StaticConditionalContent/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputList/Subview/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ForEachSubview/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/OptionalAdapter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/TextReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/AttributedStringReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/MultiViewAdapter/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicSectionView/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputKeyValueReader/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicView/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ViewUpdateDebugView/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/ConditionalContent/styledViewStyle(_:style:)'
--> Sources/Engine/Sources/ViewStyle.swift:243:87-243:98
241 | /// views in the view hierarchy.
242 | ///
243 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
244 | @inlinable
245 | public func styledViewStyle<
warning: '@StyledView' doesn't exist at '/Engine/StaticContent/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/TextReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewInputConditionalContent/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/StaticConditionalContent/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/SectionFooter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/SectionHeader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicSectionView/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/EmptyShape/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/MultiViewSubviewVisitor/Subview/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ConditionalContent/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ForEachSubview/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/SwiftUICore/View/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputKeyValueReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicView/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewUpdateDebugView/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/LayoutAdapter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputAliasReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/ViewOutputList/Subview/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/PreferenceKeyReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicSectionView/Subview/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/AnyVariadicView/Subview/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/MultiViewAdapter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/OptionalAdapter/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/UnaryViewAdaptor/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @inlinable
warning: '@StyledView' doesn't exist at '/Engine/AttributedStringReader/styledViewStyle(_:style:predicate:)'
--> Sources/Engine/Sources/ViewStyle.swift:259:87-259:98
257 | /// the current style context of the view.
258 | ///
259 + /// > Info: For more on how to create custom view styles, see ``ViewStyle`` and ``@StyledView``.
260 | /// > Info: For more on how to create custom style context, see ``StyleContext``.
261 | @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' (18.17s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/nathantannar4/engine/main
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.58s)
Updated https://github.com/swiftlang/swift-syntax (0.82s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 600.0.1 (1.45s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.4 (0.56s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.82s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.47s)
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
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.4
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module Snippets
[7/53] Emitting module SymbolKit
[8/57] Compiling SymbolKit Mixin+Equals.swift
[9/57] Compiling SymbolKit Mixin+Hash.swift
[10/57] Compiling SymbolKit Mixin.swift
[11/57] Compiling SymbolKit LineList.swift
[12/57] Compiling SymbolKit Position.swift
[13/57] Compiling SymbolKit DeclarationFragments.swift
[14/57] Compiling SymbolKit Fragment.swift
[15/57] Compiling SymbolKit FragmentKind.swift
[16/57] Compiling SymbolKit FunctionParameter.swift
[17/57] Compiling SymbolKit FunctionSignature.swift
[18/57] Compiling SymbolKit Symbol.swift
[19/57] Compiling SymbolKit SymbolKind.swift
[20/57] Compiling SymbolKit SymbolGraph.swift
[21/57] Compiling SymbolKit GraphCollector.swift
[22/57] Compiling SymbolKit Names.swift
[23/57] Compiling SymbolKit SPI.swift
[24/57] Compiling SymbolKit Snippet.swift
[25/57] Compiling SymbolKit Extension.swift
[26/57] Compiling SymbolKit Relationship.swift
[27/57] Compiling SymbolKit RelationshipKind.swift
[28/57] Compiling SymbolKit SourceOrigin.swift
[29/57] Compiling SymbolKit GenericConstraints.swift
[30/57] Compiling SymbolKit Swift.swift
[31/57] Compiling SymbolKit Identifier.swift
[32/57] Compiling SymbolKit KindIdentifier.swift
[33/57] Compiling SymbolKit Location.swift
[34/57] Compiling SymbolKit Mutability.swift
[35/57] Compiling Snippets Snippet.swift
[36/57] Compiling Snippets SnippetParser.swift
[37/57] Compiling SymbolKit SourceRange.swift
[38/57] Compiling SymbolKit Metadata.swift
[39/57] Compiling SymbolKit Module.swift
[40/57] Compiling SymbolKit OperatingSystem.swift
[41/57] Compiling SymbolKit Platform.swift
[42/57] Compiling SymbolKit GenericConstraint.swift
[43/57] Compiling SymbolKit GenericParameter.swift
[44/57] Compiling SymbolKit Generics.swift
[45/57] Compiling SymbolKit Namespace.swift
[46/57] Compiling SymbolKit SemanticVersion.swift
[47/57] Compiling SymbolKit AccessControl.swift
[48/57] Compiling SymbolKit Availability.swift
[49/57] Compiling SymbolKit AvailabilityItem.swift
[50/57] Compiling SymbolKit Domain.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 URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.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.14s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/23] Compiling EngineCore AnyViewVisitor.swift
[3/23] Compiling EngineCore ConditionalContentVisitor.swift
[4/23] Compiling EngineCore CustomViewVisitor.swift
[5/25] Emitting module EngineCore
[6/25] Compiling EngineCore TupleViewVisitor.swift
[7/25] Compiling EngineCore TupleVisitor.swift
[8/25] Compiling EngineCore Runtime.swift
[9/25] Compiling EngineCore SectionVisitor.swift
[10/25] Compiling EngineCore OptionalVisitor.swift
[11/25] Compiling EngineCore ProtocolConformance.swift
[12/25] Compiling EngineCore TypeDescriptor.swift
[13/25] Compiling EngineCore TypeIdentifier.swift
[14/25] Compiling EngineCore EmptyViewVisitor.swift
[15/25] Compiling EngineCore EnvironmentKeyVisitor.swift
[16/25] Compiling EngineCore ForEachVisitor.swift
[17/25] Compiling EngineCore TypeMetadata.swift
[18/25] Compiling EngineCore UnsafePointer.swift
[19/25] Compiling EngineCore ViewModifierVisitor.swift
[20/25] Compiling EngineCore ViewTraitKeyVisitor.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/107] Compiling Engine Text+Extensions.swift
[27/107] Compiling Engine TextAttachment.swift
[28/107] Compiling Engine TextBuilder.swift
[29/107] Compiling Engine TextReader.swift
[30/107] Compiling Engine TraitValueKey.swift
[31/107] Compiling Engine Transaction.swift
[32/107] Compiling Engine UnaryViewAdaptor.swift
[33/107] Compiling Engine UnaryViewModifier.swift
[34/107] Compiling Engine UnwrapTransform.swift
[35/116] Compiling Engine ViewAlias.swift
[36/116] Compiling Engine ViewInputConditionalContent.swift
[37/116] Compiling Engine ViewInputConditionalModifier.swift
[38/116] Compiling Engine ViewInputKey.swift
[39/116] Compiling Engine ViewInputs.swift
[40/116] Compiling Engine ViewInputsVisitor.swift
[41/116] Compiling Engine ViewModifierBuilder.swift
[42/116] Compiling Engine ViewModifierContent.swift
[43/116] Compiling Engine ViewModifierVisitor.swift
[44/116] Compiling Engine StateOrBinding.swift
[45/116] Compiling Engine StaticCondition.swift
[46/116] Compiling Engine StaticConditionalContent.swift
[47/116] Compiling Engine StaticConditionalModifier.swift
[48/116] Compiling Engine StaticContent.swift
[49/116] Compiling Engine StaticModifier.swift
[50/116] Compiling Engine StyleContext.swift
[51/116] Compiling Engine StyleInputCondition.swift
[52/116] Compiling Engine SymmetricallyScaledText.swift
[53/116] Compiling Engine IsNilTransform.swift
[54/116] Compiling Engine IsNotNilTransform.swift
[55/116] Compiling Engine LayoutAdapter.swift
[56/116] Compiling Engine LayoutBuilder.swift
[57/116] Compiling Engine LayoutThatFits.swift
[58/116] Compiling Engine MainActor.swift
[59/116] Compiling Engine MultiViewAdapter.swift
[60/116] Compiling Engine MultiViewVisitor.swift
[61/116] Compiling Engine Never.swift
[62/116] Emitting module Engine
[63/116] Compiling Engine Animation+Resolved.swift
[64/116] Compiling Engine AnyAnimatableData.swift
[65/116] Compiling Engine AnyShape.swift
[66/116] Compiling Engine AnyShapeStyle+Extensions.swift
[67/116] Compiling Engine AnyView.swift
[68/116] Compiling Engine AnyViewModifier.swift
[69/116] Compiling Engine AttributedString+Extensions.swift
[70/116] Compiling Engine AttributedStringReader.swift
[71/116] Compiling Engine BindingTransform.swift
[72/116] Compiling Engine OptionalAdapter.swift
[73/116] Compiling Engine PreferenceKeyReader.swift
[74/116] Compiling Engine PrimitiveView.swift
[75/116] Compiling Engine PrimitiveViewModifier.swift
[76/116] Compiling Engine PropertyList.swift
[77/116] Compiling Engine ProposedSize.swift
[78/116] Compiling Engine SectionView.swift
[79/116] Compiling Engine ShapeAdapter.swift
[80/116] Compiling Engine ShapeBuilder.swift
[81/116] Compiling Engine EnvironmentValueReader.swift
[82/116] Compiling Engine EnvironmentValuesVisitor.swift
[83/116] Compiling Engine Font+Extensions.swift
[84/116] Compiling Engine ForEachSubview.swift
[85/116] Compiling Engine GraphInputs.swift
[86/116] Compiling Engine Group.swift
[87/116] Compiling Engine HostingController.swift
[88/116] Compiling Engine HostingView.swift
[89/116] Compiling Engine Image+Extensions.swift
[90/116] Compiling Engine UpdatePhase.swift
[91/116] Compiling Engine UserInterfaceIdiomContent.swift
[92/116] Compiling Engine UserInterfaceIdiomModifier.swift
[93/116] Compiling Engine VariadicView.swift
[94/116] Compiling Engine VersionedDynamicProperty.swift
[95/116] Compiling Engine VersionedView.swift
[96/116] Compiling Engine VersionedViewInput.swift
[97/116] Compiling Engine VersionedViewModifier.swift
[98/116] Compiling Engine ViewAdapter.swift
[99/116] Compiling Engine Color+Extensions.swift
[100/116] Compiling Engine ConditionalContent.swift
[101/116] Compiling Engine ConditionalLayout.swift
[102/116] Compiling Engine ConditionalShape.swift
[103/116] Compiling Engine ConditionalView.swift
[104/116] Compiling Engine EmptyShape.swift
[105/116] Compiling Engine Environment+Extensions.swift
[106/116] Compiling Engine EnvironmentKeyVisitor.swift
[107/116] Compiling Engine EnvironmentOrValue.swift
[108/116] Compiling Engine ViewOutputAlias.swift
[109/116] Compiling Engine ViewOutputKey.swift
[110/116] Compiling Engine ViewStackAxisReader.swift
[111/116] Compiling Engine ViewStyle.swift
[112/116] Compiling Engine ViewTraitKey.swift
[113/116] Compiling Engine ViewTraitKeyVisitor.swift
[114/116] Compiling Engine ViewUpdateDebug.swift
[115/116] Compiling Engine ViewVisitor.swift
[116/116] Compiling Engine module.swift
Build of target: 'Engine' complete! (3.15s)
Target: EngineCore
Extracting symbol information for 'EngineCore'...
Finished extracting symbol information for 'EngineCore'. (0.76s)
Building documentation for 'EngineCore'...
Finished building documentation for 'EngineCore' (0.18s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/nathantannar4/engine/main
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.44s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
Build of target: 'EngineCore' complete! (0.45s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/nathantannar4/engine/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/nathantannar4/engine/main/linkable-paths.json
Target: EngineMacros
Extracting symbol information for 'EngineMacros'...
Finished extracting symbol information for 'EngineMacros'. (16.13s)
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: View, DynamicProperty {
Finished building documentation for 'EngineMacros' (0.04s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/nathantannar4/engine/main
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.39s)
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
[2/9] Compiling SwiftSyntax509 Empty.swift
[3/9] Emitting module SwiftSyntax509
[4/9] Compiling SwiftSyntax600 Empty.swift
[5/9] Emitting module SwiftSyntax510
[6/9] Compiling SwiftSyntax510 Empty.swift
[7/9] Emitting module SwiftSyntax600
[8/74] Compiling SwiftSyntax AbsolutePosition.swift
[9/74] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[10/74] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[11/74] Compiling SwiftSyntax Assert.swift
[12/74] Compiling SwiftSyntax BumpPtrAllocator.swift
[13/74] Compiling SwiftSyntax CommonAncestor.swift
[14/74] Compiling SwiftSyntax Convenience.swift
[15/74] Compiling SwiftSyntax CustomTraits.swift
[16/81] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[17/81] Compiling SwiftSyntax SyntaxChildren.swift
[18/81] Compiling SwiftSyntax SyntaxCollection.swift
[19/81] Compiling SwiftSyntax SyntaxHashable.swift
[20/81] Compiling SwiftSyntax SyntaxIdentifier.swift
[21/81] Compiling SwiftSyntax SyntaxNodeFactory.swift
[22/81] Compiling SwiftSyntax SyntaxNodeStructure.swift
[23/81] Compiling SwiftSyntax SyntaxProtocol.swift
[24/81] Compiling SwiftSyntax SyntaxText.swift
[25/81] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[26/81] Compiling SwiftSyntax TokenDiagnostic.swift
[27/81] Compiling SwiftSyntax TokenSequence.swift
[28/81] Compiling SwiftSyntax TokenSyntax.swift
[29/81] Compiling SwiftSyntax Trivia.swift
[30/81] Compiling SwiftSyntax Identifier.swift
[31/81] Compiling SwiftSyntax MemoryLayout.swift
[32/81] Compiling SwiftSyntax MissingNodeInitializers.swift
[33/81] Compiling SwiftSyntax RawSyntax.swift
[34/81] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[35/81] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[36/81] Compiling SwiftSyntax RawSyntaxTokenView.swift
[37/81] Compiling SwiftSyntax Tokens.swift
[38/81] Compiling SwiftSyntax TriviaPieces.swift
[39/81] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[40/81] Compiling SwiftSyntax RawSyntaxNodesC.swift
[41/81] Compiling SwiftSyntax RawSyntaxNodesD.swift
[42/81] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[43/81] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[44/81] Compiling SwiftSyntax SourceEdit.swift
[45/81] Compiling SwiftSyntax SourceLength.swift
[46/81] Compiling SwiftSyntax SourceLocation.swift
[47/81] Compiling SwiftSyntax SourcePresence.swift
[48/81] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[49/81] Compiling SwiftSyntax Syntax.swift
[50/81] Compiling SwiftSyntax SyntaxArena.swift
[51/81] Emitting module SwiftSyntax
[52/81] Compiling SwiftSyntax SyntaxCollections.swift
[53/81] Compiling SwiftSyntax SyntaxEnum.swift
[54/81] Compiling SwiftSyntax SyntaxKind.swift
[55/81] Compiling SwiftSyntax SyntaxRewriter.swift
[56/81] Compiling SwiftSyntax SyntaxTraits.swift
[57/81] Compiling SwiftSyntax SyntaxVisitor.swift
[58/81] Compiling SwiftSyntax TokenKind.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 SwiftBasicFormat SyntaxProtocol+Formatted.swift
[81/139] Compiling SwiftDiagnostics Message.swift
[82/140] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[83/140] Compiling SwiftDiagnostics Note.swift
[84/140] Compiling SwiftDiagnostics Diagnostic.swift
[85/140] Compiling SwiftDiagnostics Convenience.swift
[86/140] Emitting module SwiftDiagnostics
[87/140] Compiling SwiftBasicFormat Syntax+Extensions.swift
[88/140] Compiling SwiftBasicFormat InferIndentation.swift
[89/140] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[90/140] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[91/140] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[92/140] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[93/140] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[94/140] Compiling SwiftDiagnostics FixIt.swift
[95/140] Emitting module SwiftBasicFormat
[96/140] Compiling SwiftBasicFormat BasicFormat.swift
[97/140] Compiling SwiftParser Nominals.swift
[98/140] Compiling SwiftParser Parameters.swift
[99/140] Compiling SwiftParser ParseSourceFile.swift
[100/140] Compiling SwiftParser Parser.swift
[101/140] Compiling SwiftParser Patterns.swift
[102/140] Compiling SwiftParser UnicodeScalarExtensions.swift
[103/140] Compiling SwiftParser Lookahead.swift
[104/140] Compiling SwiftParser LoopProgressCondition.swift
[105/140] Compiling SwiftParser Modifiers.swift
[106/140] Compiling SwiftParser Names.swift
[107/140] Compiling SwiftParser Recovery.swift
[108/140] Compiling SwiftParser Specifiers.swift
[109/140] Compiling SwiftParser Statements.swift
[110/140] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[111/144] Emitting module SwiftParser
[112/144] Compiling SwiftParser TopLevel.swift
[113/144] Compiling SwiftParser TriviaParser.swift
[114/144] Compiling SwiftParser Types.swift
[115/144] Compiling SwiftParser ExperimentalFeatures.swift
[116/144] Compiling SwiftParser Directives.swift
[117/144] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[118/144] Compiling SwiftParser Expressions.swift
[119/144] Compiling SwiftParser IncrementalParseTransition.swift
[120/144] Compiling SwiftParser IsValidIdentifier.swift
[121/144] Compiling SwiftParser TokenConsumer.swift
[122/144] Compiling SwiftParser TokenPrecedence.swift
[123/144] Compiling SwiftParser TokenSpec.swift
[124/144] Compiling SwiftParser TokenSpecSet.swift
[125/144] Compiling SwiftParser StringLiterals.swift
[126/144] Compiling SwiftParser SwiftParserCompatibility.swift
[127/144] Compiling SwiftParser SwiftVersion.swift
[128/144] Compiling SwiftParser SyntaxUtils.swift
[129/144] Compiling SwiftParser Cursor.swift
[130/144] Compiling SwiftParser Lexeme.swift
[131/144] Compiling SwiftParser LexemeSequence.swift
[132/144] Compiling SwiftParser Lexer.swift
[133/144] Compiling SwiftParser RegexLiteralLexer.swift
[134/144] Compiling SwiftParser Attributes.swift
[135/144] Compiling SwiftParser Availability.swift
[136/144] Compiling SwiftParser CharacterInfo.swift
[137/144] Compiling SwiftParser CollectionNodes+Parsable.swift
[138/144] Compiling SwiftParser Declarations.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/169] Compiling SwiftOperators OperatorTable.swift
[146/169] Compiling SwiftOperators PrecedenceGraph.swift
[147/169] Compiling SwiftParserDiagnostics PresenceUtils.swift
[148/169] Compiling SwiftOperators OperatorTable+Semantics.swift
[149/169] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[150/169] Compiling SwiftOperators OperatorError.swift
[151/169] Compiling SwiftOperators OperatorError+Diagnostics.swift
[152/169] Compiling SwiftOperators OperatorTable+Folding.swift
[153/169] Compiling SwiftOperators OperatorTable+Defaults.swift
[154/169] Compiling SwiftOperators Operator.swift
[155/169] Emitting module SwiftOperators
[156/169] Compiling SwiftOperators SyntaxSynthesis.swift
[157/169] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[158/169] Compiling SwiftParserDiagnostics Utils.swift
[159/169] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[160/169] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[161/169] Compiling SwiftParserDiagnostics MissingNodesError.swift
[162/169] Compiling SwiftParserDiagnostics MissingTokenError.swift
[163/169] Emitting module SwiftParserDiagnostics
[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 RenamedChildrenBuilderCompatibility.swift
[169/185] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[170/185] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[171/185] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[172/185] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[173/185] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[174/185] Compiling SwiftSyntaxBuilder Indenter.swift
[175/185] Compiling SwiftSyntaxBuilder ListBuilder.swift
[176/185] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[177/185] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[178/185] Emitting module SwiftSyntaxBuilder
[179/185] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[180/185] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[181/185] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[182/185] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[183/185] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[184/203] Compiling SwiftSyntaxMacros PreambleMacro.swift
[185/203] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[186/203] Compiling SwiftSyntaxMacros Macro+Format.swift
[187/203] Compiling SwiftSyntaxMacros Macro.swift
[188/203] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[189/203] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[190/203] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[191/203] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[192/203] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[193/203] Compiling SwiftSyntaxMacros AttachedMacro.swift
[194/203] Compiling SwiftSyntaxMacros BodyMacro.swift
[195/203] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[196/203] Compiling SwiftSyntaxMacros AccessorMacro.swift
[197/203] Compiling SwiftSyntaxMacros MemberMacro.swift
[198/203] Compiling SwiftSyntaxMacros PeerMacro.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 MacroSpec.swift
[204/214] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[205/214] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[206/214] Emitting module SwiftSyntaxMacroExpansion
[207/214] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[208/214] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[209/214] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[210/214] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[211/214] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[212/214] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[213/226] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[214/226] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[215/226] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.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] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[222/227] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[223/227] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[224/227] Emitting module SwiftCompilerPluginMessageHandling
[225/227] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[226/229] Emitting module SwiftCompilerPlugin
[227/229] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[228/232] Compiling EngineMacrosCore StyledViewMacro.swift
[229/232] Emitting module EngineMacrosCore
[230/232] Compiling EngineMacrosCore EngineMacrosCore.swift
[230/231] Linking EngineMacrosCore-tool
[232/233] Compiling EngineMacros StyledView.swift
[233/233] Emitting module EngineMacros
Build of target: 'EngineMacros' complete! (16.00s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/nathantannar4/engine/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/nathantannar4/engine/main/linkable-paths.json
55826
335 /Users/admin/builder/spi-builder-workspace/.docs/nathantannar4/engine/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/nathantannar4/engine/main
File count: 55826
Doc size: 335.0MB
Preparing doc bundle ...
Uploading prod-nathantannar4-engine-main-393f609e.zip to s3://spi-docs-inbox/prod-nathantannar4-engine-main-393f609e.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.