The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Swifter, reference 1.5.0 (9483a5), with Swift 6.0 for Linux on 28 Nov 2024 08:38:03 UTC.

Swift 6 data race errors: 131

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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 2>&1

Build Log

 62 | public var classs: String?
    |            |- warning: var 'classs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'classs' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'classs' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 | public var manifest: String?
 64 | public var value: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:63:12: warning: var 'manifest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 61 | public var scope: String?
 62 | public var classs: String?
 63 | public var manifest: String?
    |            |- warning: var 'manifest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'manifest' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'manifest' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | public var value: String?
 65 | public var clear: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:64:12: warning: var 'value' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 | public var classs: String?
 63 | public var manifest: String?
 64 | public var value: String?
    |            |- warning: var 'value' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'value' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'value' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 | public var clear: String?
 66 | public var start: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:65:12: warning: var 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 63 | public var manifest: String?
 64 | public var value: String?
 65 | public var clear: String?
    |            |- warning: var 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'clear' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'clear' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | public var start: String?
 67 | public var label: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:66:12: warning: var 'start' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 | public var value: String?
 65 | public var clear: String?
 66 | public var start: String?
    |            |- warning: var 'start' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'start' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'start' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 | public var label: String?
 68 | public var action: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:67:12: warning: var 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 | public var clear: String?
 66 | public var start: String?
 67 | public var label: String?
    |            |- warning: var 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'label' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 | public var action: String?
 69 | public var height: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:68:12: warning: var 'action' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 66 | public var start: String?
 67 | public var label: String?
 68 | public var action: String?
    |            |- warning: var 'action' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'action' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'action' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 | public var height: String?
 70 | public var method: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:69:12: warning: var 'height' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 | public var label: String?
 68 | public var action: String?
 69 | public var height: String?
    |            |- warning: var 'height' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'height' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'height' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 | public var method: String?
 71 | public var acceptt: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:70:12: warning: var 'method' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 68 | public var action: String?
 69 | public var height: String?
 70 | public var method: String?
    |            |- warning: var 'method' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'method' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'method' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 | public var acceptt: String?
 72 | public var object: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:71:12: warning: var 'acceptt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 69 | public var height: String?
 70 | public var method: String?
 71 | public var acceptt: String?
    |            |- warning: var 'acceptt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'acceptt' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'acceptt' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 | public var object: String?
 73 | public var scheme: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:72:12: warning: var 'object' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 70 | public var method: String?
 71 | public var acceptt: String?
 72 | public var object: String?
    |            |- warning: var 'object' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'object' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'object' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 | public var scheme: String?
 74 | public var coords: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:73:12: warning: var 'scheme' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 71 | public var acceptt: String?
 72 | public var object: String?
 73 | public var scheme: String?
    |            |- warning: var 'scheme' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'scheme' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'scheme' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 | public var coords: String?
 75 | public var usemap: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:74:12: warning: var 'coords' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 72 | public var object: String?
 73 | public var scheme: String?
 74 | public var coords: String?
    |            |- warning: var 'coords' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'coords' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'coords' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 | public var usemap: String?
 76 | public var onblur: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:75:12: warning: var 'usemap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 73 | public var scheme: String?
 74 | public var coords: String?
 75 | public var usemap: String?
    |            |- warning: var 'usemap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'usemap' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'usemap' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 | public var onblur: String?
 77 | public var nohref: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:76:12: warning: var 'onblur' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 | public var coords: String?
 75 | public var usemap: String?
 76 | public var onblur: String?
    |            |- warning: var 'onblur' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onblur' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onblur' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 | public var nohref: String?
 78 | public var nowrap: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:77:12: warning: var 'nohref' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 | public var usemap: String?
 76 | public var onblur: String?
 77 | public var nohref: String?
    |            |- warning: var 'nohref' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'nohref' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'nohref' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 | public var nowrap: String?
 79 | public var hspace: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:78:12: warning: var 'nowrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 | public var onblur: String?
 77 | public var nohref: String?
 78 | public var nowrap: String?
    |            |- warning: var 'nowrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'nowrap' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'nowrap' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 | public var hspace: String?
 80 | public var border: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:79:12: warning: var 'hspace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 | public var nohref: String?
 78 | public var nowrap: String?
 79 | public var hspace: String?
    |            |- warning: var 'hspace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'hspace' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'hspace' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 | public var border: String?
 81 | public var valign: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:80:12: warning: var 'border' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 | public var nowrap: String?
 79 | public var hspace: String?
 80 | public var border: String?
    |            |- warning: var 'border' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'border' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'border' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 | public var valign: String?
 82 | public var vspace: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:81:12: warning: var 'valign' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 79 | public var hspace: String?
 80 | public var border: String?
 81 | public var valign: String?
    |            |- warning: var 'valign' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'valign' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'valign' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 | public var vspace: String?
 83 | public var onload: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:82:12: warning: var 'vspace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 80 | public var border: String?
 81 | public var valign: String?
 82 | public var vspace: String?
    |            |- warning: var 'vspace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'vspace' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'vspace' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 | public var onload: String?
 84 | public var target: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:83:12: warning: var 'onload' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 | public var valign: String?
 82 | public var vspace: String?
 83 | public var onload: String?
    |            |- warning: var 'onload' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onload' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onload' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 | public var target: String?
 85 | public var prompt: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:84:12: warning: var 'target' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 82 | public var vspace: String?
 83 | public var onload: String?
 84 | public var target: String?
    |            |- warning: var 'target' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'target' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'target' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 | public var prompt: String?
 86 | public var onfocus: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:85:12: warning: var 'prompt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 83 | public var onload: String?
 84 | public var target: String?
 85 | public var prompt: String?
    |            |- warning: var 'prompt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'prompt' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'prompt' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 | public var onfocus: String?
 87 | public var enctype: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:86:12: warning: var 'onfocus' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 84 | public var target: String?
 85 | public var prompt: String?
 86 | public var onfocus: String?
    |            |- warning: var 'onfocus' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onfocus' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onfocus' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 | public var enctype: String?
 88 | public var onclick: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:87:12: warning: var 'enctype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 85 | public var prompt: String?
 86 | public var onfocus: String?
 87 | public var enctype: String?
    |            |- warning: var 'enctype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'enctype' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'enctype' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 | public var onclick: String?
 89 | public var ontouchstart: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:88:12: warning: var 'onclick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 | public var onfocus: String?
 87 | public var enctype: String?
 88 | public var onclick: String?
    |            |- warning: var 'onclick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onclick' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onclick' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 | public var ontouchstart: String?
 90 | public var onkeyup: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:89:12: warning: var 'ontouchstart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 87 | public var enctype: String?
 88 | public var onclick: String?
 89 | public var ontouchstart: String?
    |            |- warning: var 'ontouchstart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'ontouchstart' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'ontouchstart' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 | public var onkeyup: String?
 91 | public var profile: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:90:12: warning: var 'onkeyup' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 88 | public var onclick: String?
 89 | public var ontouchstart: String?
 90 | public var onkeyup: String?
    |            |- warning: var 'onkeyup' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onkeyup' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onkeyup' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 | public var profile: String?
 92 | public var version: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:91:12: warning: var 'profile' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 89 | public var ontouchstart: String?
 90 | public var onkeyup: String?
 91 | public var profile: String?
    |            |- warning: var 'profile' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'profile' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'profile' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 92 | public var version: String?
 93 | public var onreset: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:92:12: warning: var 'version' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 90 | public var onkeyup: String?
 91 | public var profile: String?
 92 | public var version: String?
    |            |- warning: var 'version' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'version' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 | public var onreset: String?
 94 | public var charset: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:93:12: warning: var 'onreset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 | public var profile: String?
 92 | public var version: String?
 93 | public var onreset: String?
    |            |- warning: var 'onreset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onreset' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onreset' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 | public var charset: String?
 95 | public var standby: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:94:12: warning: var 'charset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 92 | public var version: String?
 93 | public var onreset: String?
 94 | public var charset: String?
    |            |- warning: var 'charset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'charset' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'charset' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 | public var standby: String?
 96 | public var colspan: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:95:12: warning: var 'standby' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 93 | public var onreset: String?
 94 | public var charset: String?
 95 | public var standby: String?
    |            |- warning: var 'standby' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'standby' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'standby' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 | public var colspan: String?
 97 | public var charoff: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:96:12: warning: var 'colspan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 | public var charset: String?
 95 | public var standby: String?
 96 | public var colspan: String?
    |            |- warning: var 'colspan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'colspan' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'colspan' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 | public var charoff: String?
 98 | public var classid: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:97:12: warning: var 'charoff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 95 | public var standby: String?
 96 | public var colspan: String?
 97 | public var charoff: String?
    |            |- warning: var 'charoff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'charoff' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'charoff' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 98 | public var classid: String?
 99 | public var compact: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:98:12: warning: var 'classid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 | public var colspan: String?
 97 | public var charoff: String?
 98 | public var classid: String?
    |            |- warning: var 'classid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'classid' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'classid' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 | public var compact: String?
100 | public var declare: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:99:12: warning: var 'compact' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 97 | public var charoff: String?
 98 | public var classid: String?
 99 | public var compact: String?
    |            |- warning: var 'compact' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'compact' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | public var declare: String?
101 | public var rowspan: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:100:12: warning: var 'declare' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 98 | public var classid: String?
 99 | public var compact: String?
100 | public var declare: String?
    |            |- warning: var 'declare' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'declare' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'declare' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | public var rowspan: String?
102 | public var checked: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:101:12: warning: var 'rowspan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 99 | public var compact: String?
100 | public var declare: String?
101 | public var rowspan: String?
    |            |- warning: var 'rowspan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'rowspan' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'rowspan' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 | public var checked: String?
103 | public var archive: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:102:12: warning: var 'checked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
100 | public var declare: String?
101 | public var rowspan: String?
102 | public var checked: String?
    |            |- warning: var 'checked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'checked' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'checked' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 | public var archive: String?
104 | public var bgcolor: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:103:12: warning: var 'archive' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
101 | public var rowspan: String?
102 | public var checked: String?
103 | public var archive: String?
    |            |- warning: var 'archive' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'archive' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'archive' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 | public var bgcolor: String?
105 | public var content: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:104:12: warning: var 'bgcolor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
102 | public var checked: String?
103 | public var archive: String?
104 | public var bgcolor: String?
    |            |- warning: var 'bgcolor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'bgcolor' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'bgcolor' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | public var content: String?
106 | public var noshade: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:105:12: warning: var 'content' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
103 | public var archive: String?
104 | public var bgcolor: String?
105 | public var content: String?
    |            |- warning: var 'content' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'content' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'content' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | public var noshade: String?
107 | public var summary: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:106:12: warning: var 'noshade' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | public var bgcolor: String?
105 | public var content: String?
106 | public var noshade: String?
    |            |- warning: var 'noshade' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'noshade' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'noshade' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | public var summary: String?
108 | public var headers: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:107:12: warning: var 'summary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public var content: String?
106 | public var noshade: String?
107 | public var summary: String?
    |            |- warning: var 'summary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'summary' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | public var headers: String?
109 | public var onselect: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:108:12: warning: var 'headers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | public var noshade: String?
107 | public var summary: String?
108 | public var headers: String?
    |            |- warning: var 'headers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'headers' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'headers' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | public var onselect: String?
110 | public var readonly: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:109:12: warning: var 'onselect' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
107 | public var summary: String?
108 | public var headers: String?
109 | public var onselect: String?
    |            |- warning: var 'onselect' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onselect' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onselect' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | public var readonly: String?
111 | public var tabindex: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:110:12: warning: var 'readonly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
108 | public var headers: String?
109 | public var onselect: String?
110 | public var readonly: String?
    |            |- warning: var 'readonly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'readonly' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'readonly' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
111 | public var tabindex: String?
112 | public var onchange: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:111:12: warning: var 'tabindex' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
109 | public var onselect: String?
110 | public var readonly: String?
111 | public var tabindex: String?
    |            |- warning: var 'tabindex' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'tabindex' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'tabindex' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 | public var onchange: String?
113 | public var noresize: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:112:12: warning: var 'onchange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
110 | public var readonly: String?
111 | public var tabindex: String?
112 | public var onchange: String?
    |            |- warning: var 'onchange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onchange' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onchange' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 | public var noresize: String?
114 | public var disabled: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:113:12: warning: var 'noresize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
111 | public var tabindex: String?
112 | public var onchange: String?
113 | public var noresize: String?
    |            |- warning: var 'noresize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'noresize' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'noresize' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 | public var disabled: String?
115 | public var longdesc: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:114:12: warning: var 'disabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
112 | public var onchange: String?
113 | public var noresize: String?
114 | public var disabled: String?
    |            |- warning: var 'disabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'disabled' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 | public var longdesc: String?
116 | public var codebase: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:115:12: warning: var 'longdesc' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
113 | public var noresize: String?
114 | public var disabled: String?
115 | public var longdesc: String?
    |            |- warning: var 'longdesc' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'longdesc' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'longdesc' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
116 | public var codebase: String?
117 | public var language: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:116:12: warning: var 'codebase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
114 | public var disabled: String?
115 | public var longdesc: String?
116 | public var codebase: String?
    |            |- warning: var 'codebase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'codebase' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'codebase' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | public var language: String?
118 | public var datetime: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:117:12: warning: var 'language' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
115 | public var longdesc: String?
116 | public var codebase: String?
117 | public var language: String?
    |            |- warning: var 'language' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'language' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'language' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | public var datetime: String?
119 | public var selected: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:118:12: warning: var 'datetime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
116 | public var codebase: String?
117 | public var language: String?
118 | public var datetime: String?
    |            |- warning: var 'datetime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'datetime' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'datetime' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 | public var selected: String?
120 | public var hreflang: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:119:12: warning: var 'selected' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
117 | public var language: String?
118 | public var datetime: String?
119 | public var selected: String?
    |            |- warning: var 'selected' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'selected' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'selected' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 | public var hreflang: String?
121 | public var onsubmit: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:120:12: warning: var 'hreflang' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
118 | public var datetime: String?
119 | public var selected: String?
120 | public var hreflang: String?
    |            |- warning: var 'hreflang' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'hreflang' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'hreflang' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | public var onsubmit: String?
122 | public var multiple: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:121:12: warning: var 'onsubmit' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
119 | public var selected: String?
120 | public var hreflang: String?
121 | public var onsubmit: String?
    |            |- warning: var 'onsubmit' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onsubmit' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onsubmit' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 | public var multiple: String?
123 | public var onunload: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:122:12: warning: var 'multiple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | public var hreflang: String?
121 | public var onsubmit: String?
122 | public var multiple: String?
    |            |- warning: var 'multiple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'multiple' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'multiple' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 | public var onunload: String?
124 | public var codetype: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:123:12: warning: var 'onunload' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
121 | public var onsubmit: String?
122 | public var multiple: String?
123 | public var onunload: String?
    |            |- warning: var 'onunload' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onunload' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onunload' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 | public var codetype: String?
125 | public var scrolling: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:124:12: warning: var 'codetype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
122 | public var multiple: String?
123 | public var onunload: String?
124 | public var codetype: String?
    |            |- warning: var 'codetype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'codetype' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'codetype' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public var scrolling: String?
126 | public var onkeydown: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:125:12: warning: var 'scrolling' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
123 | public var onunload: String?
124 | public var codetype: String?
125 | public var scrolling: String?
    |            |- warning: var 'scrolling' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'scrolling' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'scrolling' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public var onkeydown: String?
127 | public var maxlength: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:126:12: warning: var 'onkeydown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 | public var codetype: String?
125 | public var scrolling: String?
126 | public var onkeydown: String?
    |            |- warning: var 'onkeydown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onkeydown' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onkeydown' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public var maxlength: String?
128 | public var valuetype: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:127:12: warning: var 'maxlength' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 | public var scrolling: String?
126 | public var onkeydown: String?
127 | public var maxlength: String?
    |            |- warning: var 'maxlength' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'maxlength' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'maxlength' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | public var valuetype: String?
129 | public var accesskey: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:128:12: warning: var 'valuetype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 | public var onkeydown: String?
127 | public var maxlength: String?
128 | public var valuetype: String?
    |            |- warning: var 'valuetype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'valuetype' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'valuetype' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | public var accesskey: String?
130 | public var onmouseup: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:129:12: warning: var 'accesskey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
127 | public var maxlength: String?
128 | public var valuetype: String?
129 | public var accesskey: String?
    |            |- warning: var 'accesskey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'accesskey' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'accesskey' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 | public var onmouseup: String?
131 | public var autofocus: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:130:12: warning: var 'onmouseup' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
128 | public var valuetype: String?
129 | public var accesskey: String?
130 | public var onmouseup: String?
    |            |- warning: var 'onmouseup' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmouseup' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmouseup' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | public var autofocus: String?
132 | public var onkeypress: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:131:12: warning: var 'autofocus' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
129 | public var accesskey: String?
130 | public var onmouseup: String?
131 | public var autofocus: String?
    |            |- warning: var 'autofocus' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'autofocus' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'autofocus' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 | public var onkeypress: String?
133 | public var ondblclick: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:132:12: warning: var 'onkeypress' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
130 | public var onmouseup: String?
131 | public var autofocus: String?
132 | public var onkeypress: String?
    |            |- warning: var 'onkeypress' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onkeypress' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onkeypress' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 | public var ondblclick: String?
134 | public var onmouseout: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:133:12: warning: var 'ondblclick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 | public var autofocus: String?
132 | public var onkeypress: String?
133 | public var ondblclick: String?
    |            |- warning: var 'ondblclick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'ondblclick' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'ondblclick' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | public var onmouseout: String?
135 | public var httpEquiv: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:134:12: warning: var 'onmouseout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 | public var onkeypress: String?
133 | public var ondblclick: String?
134 | public var onmouseout: String?
    |            |- warning: var 'onmouseout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmouseout' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmouseout' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 | public var httpEquiv: String?
136 | public var dataText: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:135:12: warning: var 'httpEquiv' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
133 | public var ondblclick: String?
134 | public var onmouseout: String?
135 | public var httpEquiv: String?
    |            |- warning: var 'httpEquiv' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'httpEquiv' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'httpEquiv' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | public var dataText: String?
137 | public var background: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:136:12: warning: var 'dataText' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
134 | public var onmouseout: String?
135 | public var httpEquiv: String?
136 | public var dataText: String?
    |            |- warning: var 'dataText' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'dataText' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'dataText' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
137 | public var background: String?
138 | public var onmousemove: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:137:12: warning: var 'background' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 | public var httpEquiv: String?
136 | public var dataText: String?
137 | public var background: String?
    |            |- warning: var 'background' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'background' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'background' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 | public var onmousemove: String?
139 | public var onmouseover: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:138:12: warning: var 'onmousemove' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 | public var dataText: String?
137 | public var background: String?
138 | public var onmousemove: String?
    |            |- warning: var 'onmousemove' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmousemove' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmousemove' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 | public var onmouseover: String?
140 | public var cellpadding: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:139:12: warning: var 'onmouseover' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
137 | public var background: String?
138 | public var onmousemove: String?
139 | public var onmouseover: String?
    |            |- warning: var 'onmouseover' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmouseover' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmouseover' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 | public var cellpadding: String?
141 | public var onmousedown: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:140:12: warning: var 'cellpadding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | public var onmousemove: String?
139 | public var onmouseover: String?
140 | public var cellpadding: String?
    |            |- warning: var 'cellpadding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'cellpadding' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'cellpadding' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 | public var onmousedown: String?
142 | public var frameborder: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:141:12: warning: var 'onmousedown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
139 | public var onmouseover: String?
140 | public var cellpadding: String?
141 | public var onmousedown: String?
    |            |- warning: var 'onmousedown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmousedown' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmousedown' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 | public var frameborder: String?
143 | public var marginwidth: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:142:12: warning: var 'frameborder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
140 | public var cellpadding: String?
141 | public var onmousedown: String?
142 | public var frameborder: String?
    |            |- warning: var 'frameborder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'frameborder' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'frameborder' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
143 | public var marginwidth: String?
144 | public var cellspacing: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:143:12: warning: var 'marginwidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
141 | public var onmousedown: String?
142 | public var frameborder: String?
143 | public var marginwidth: String?
    |            |- warning: var 'marginwidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'marginwidth' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'marginwidth' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
144 | public var cellspacing: String?
145 | public var placeholder: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:144:12: warning: var 'cellspacing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
142 | public var frameborder: String?
143 | public var marginwidth: String?
144 | public var cellspacing: String?
    |            |- warning: var 'cellspacing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'cellspacing' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'cellspacing' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 | public var placeholder: String?
146 | public var marginheight: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:145:12: warning: var 'placeholder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 | public var marginwidth: String?
144 | public var cellspacing: String?
145 | public var placeholder: String?
    |            |- warning: var 'placeholder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'placeholder' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'placeholder' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | public var marginheight: String?
147 | public var acceptCharset: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:146:12: warning: var 'marginheight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
144 | public var cellspacing: String?
145 | public var placeholder: String?
146 | public var marginheight: String?
    |            |- warning: var 'marginheight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'marginheight' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'marginheight' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | public var acceptCharset: String?
148 |
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:147:12: warning: var 'acceptCharset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
145 | public var placeholder: String?
146 | public var marginheight: String?
147 | public var acceptCharset: String?
    |            |- warning: var 'acceptCharset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'acceptCharset' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'acceptCharset' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 |
149 | public var inner: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:149:12: warning: var 'inner' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
147 | public var acceptCharset: String?
148 |
149 | public var inner: String?
    |            |- warning: var 'inner' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'inner' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'inner' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |
151 | public func a(_ closure: Closure) { element("a", closure) }
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:336:5: warning: var 'scopesBuffer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
334 | public func element(_ node: String, _ attrs: [String: String?] = [:], _ closure: Closure) { evaluate(node, attrs, closure) }
335 |
336 | var scopesBuffer = [UInt64: String]()
    |     |- warning: var 'scopesBuffer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'scopesBuffer' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'scopesBuffer' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
337 |
338 | // swiftlint:disable cyclomatic_complexity function_body_length
[22/28] Compiling Swifter Scopes.swift
/host/spi-builder-workspace/XCode/Sources/Process.swift:26:24: warning: static property 'signalsWatchers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 |     }
25 |
26 |     private static var signalsWatchers = [(Int32) -> Void]()
   |                        |- warning: static property 'signalsWatchers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'signalsWatchers' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'signalsWatchers' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     private static var signalsObserved = false
28 |
/host/spi-builder-workspace/XCode/Sources/Process.swift:27:24: warning: static property 'signalsObserved' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |     private static var signalsWatchers = [(Int32) -> Void]()
27 |     private static var signalsObserved = false
   |                        |- warning: static property 'signalsObserved' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'signalsObserved' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'signalsObserved' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 |     public static func watchSignals(_ callback: @escaping (Int32) -> Void) {
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:23:12: warning: var 'idd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 | public typealias Closure = () -> Void
 22 |
 23 | public var idd: String?
    |            |- warning: var 'idd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'idd' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'idd' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | public var dir: String?
 25 | public var rel: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:24:12: warning: var 'dir' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 | public var idd: String?
 24 | public var dir: String?
    |            |- warning: var 'dir' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'dir' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'dir' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 | public var rel: String?
 26 | public var rev: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:25:12: warning: var 'rel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 | public var idd: String?
 24 | public var dir: String?
 25 | public var rel: String?
    |            |- warning: var 'rel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'rel' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'rel' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 | public var rev: String?
 27 | public var alt: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:26:12: warning: var 'rev' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 24 | public var dir: String?
 25 | public var rel: String?
 26 | public var rev: String?
    |            |- warning: var 'rev' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'rev' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'rev' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | public var alt: String?
 28 | public var forr: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:27:12: warning: var 'alt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | public var rel: String?
 26 | public var rev: String?
 27 | public var alt: String?
    |            |- warning: var 'alt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'alt' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'alt' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | public var forr: String?
 29 | public var src: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:28:12: warning: var 'forr' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 | public var rev: String?
 27 | public var alt: String?
 28 | public var forr: String?
    |            |- warning: var 'forr' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'forr' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'forr' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 | public var src: String?
 30 | public var type: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:29:12: warning: var 'src' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | public var alt: String?
 28 | public var forr: String?
 29 | public var src: String?
    |            |- warning: var 'src' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'src' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'src' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | public var type: String?
 31 | public var href: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:30:12: warning: var 'type' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 | public var forr: String?
 29 | public var src: String?
 30 | public var type: String?
    |            |- warning: var 'type' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'type' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'type' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 | public var href: String?
 32 | public var text: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:31:12: warning: var 'href' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | public var src: String?
 30 | public var type: String?
 31 | public var href: String?
    |            |- warning: var 'href' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'href' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'href' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 | public var text: String?
 33 | public var abbr: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:32:12: warning: var 'text' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 | public var type: String?
 31 | public var href: String?
 32 | public var text: String?
    |            |- warning: var 'text' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'text' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | public var abbr: String?
 34 | public var size: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:33:12: warning: var 'abbr' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 31 | public var href: String?
 32 | public var text: String?
 33 | public var abbr: String?
    |            |- warning: var 'abbr' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'abbr' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'abbr' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 | public var size: String?
 35 | public var face: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:34:12: warning: var 'size' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 | public var text: String?
 33 | public var abbr: String?
 34 | public var size: String?
    |            |- warning: var 'size' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'size' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'size' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 | public var face: String?
 36 | public var char: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:35:12: warning: var 'face' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 33 | public var abbr: String?
 34 | public var size: String?
 35 | public var face: String?
    |            |- warning: var 'face' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'face' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'face' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | public var char: String?
 37 | public var cite: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:36:12: warning: var 'char' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 | public var size: String?
 35 | public var face: String?
 36 | public var char: String?
    |            |- warning: var 'char' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'char' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'char' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 | public var cite: String?
 38 | public var span: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:37:12: warning: var 'cite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 | public var face: String?
 36 | public var char: String?
 37 | public var cite: String?
    |            |- warning: var 'cite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'cite' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'cite' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | public var span: String?
 39 | public var data: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:38:12: warning: var 'span' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 | public var char: String?
 37 | public var cite: String?
 38 | public var span: String?
    |            |- warning: var 'span' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'span' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'span' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 | public var data: String?
 40 | public var axis: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:39:12: warning: var 'data' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 37 | public var cite: String?
 38 | public var span: String?
 39 | public var data: String?
    |            |- warning: var 'data' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 | public var axis: String?
 41 | public var Name: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:40:12: warning: var 'axis' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 | public var span: String?
 39 | public var data: String?
 40 | public var axis: String?
    |            |- warning: var 'axis' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'axis' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'axis' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | public var Name: String?
 42 | public var name: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:41:12: warning: var 'Name' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 | public var data: String?
 40 | public var axis: String?
 41 | public var Name: String?
    |            |- warning: var 'Name' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'Name' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'Name' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 | public var name: String?
 43 | public var code: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:42:12: warning: var 'name' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 40 | public var axis: String?
 41 | public var Name: String?
 42 | public var name: String?
    |            |- warning: var 'name' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'name' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'name' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 | public var code: String?
 44 | public var link: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:43:12: warning: var 'code' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 | public var Name: String?
 42 | public var name: String?
 43 | public var code: String?
    |            |- warning: var 'code' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'code' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'code' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 | public var link: String?
 45 | public var lang: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:44:12: warning: var 'link' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 | public var name: String?
 43 | public var code: String?
 44 | public var link: String?
    |            |- warning: var 'link' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'link' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'link' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 | public var lang: String?
 46 | public var cols: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:45:12: warning: var 'lang' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 | public var code: String?
 44 | public var link: String?
 45 | public var lang: String?
    |            |- warning: var 'lang' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'lang' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'lang' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 | public var cols: String?
 47 | public var rows: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:46:12: warning: var 'cols' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 | public var link: String?
 45 | public var lang: String?
 46 | public var cols: String?
    |            |- warning: var 'cols' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'cols' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'cols' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 | public var rows: String?
 48 | public var ismap: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:47:12: warning: var 'rows' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 45 | public var lang: String?
 46 | public var cols: String?
 47 | public var rows: String?
    |            |- warning: var 'rows' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'rows' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'rows' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 | public var ismap: String?
 49 | public var shape: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:48:12: warning: var 'ismap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 46 | public var cols: String?
 47 | public var rows: String?
 48 | public var ismap: String?
    |            |- warning: var 'ismap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'ismap' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'ismap' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 | public var shape: String?
 50 | public var style: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:49:12: warning: var 'shape' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 | public var rows: String?
 48 | public var ismap: String?
 49 | public var shape: String?
    |            |- warning: var 'shape' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'shape' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'shape' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 | public var style: String?
 51 | public var alink: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:50:12: warning: var 'style' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 | public var ismap: String?
 49 | public var shape: String?
 50 | public var style: String?
    |            |- warning: var 'style' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'style' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'style' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 | public var alink: String?
 52 | public var width: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:51:12: warning: var 'alink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | public var shape: String?
 50 | public var style: String?
 51 | public var alink: String?
    |            |- warning: var 'alink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'alink' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'alink' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 | public var width: String?
 53 | public var rules: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:52:12: warning: var 'width' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 50 | public var style: String?
 51 | public var alink: String?
 52 | public var width: String?
    |            |- warning: var 'width' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'width' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'width' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 | public var rules: String?
 54 | public var align: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:53:12: warning: var 'rules' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 51 | public var alink: String?
 52 | public var width: String?
 53 | public var rules: String?
    |            |- warning: var 'rules' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'rules' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'rules' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 | public var align: String?
 55 | public var frame: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:54:12: warning: var 'align' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 52 | public var width: String?
 53 | public var rules: String?
 54 | public var align: String?
    |            |- warning: var 'align' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'align' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'align' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 | public var frame: String?
 56 | public var vlink: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:55:12: warning: var 'frame' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 53 | public var rules: String?
 54 | public var align: String?
 55 | public var frame: String?
    |            |- warning: var 'frame' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'frame' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 | public var vlink: String?
 57 | public var deferr: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:56:12: warning: var 'vlink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 54 | public var align: String?
 55 | public var frame: String?
 56 | public var vlink: String?
    |            |- warning: var 'vlink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'vlink' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'vlink' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 | public var deferr: String?
 58 | public var color: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:57:12: warning: var 'deferr' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 55 | public var frame: String?
 56 | public var vlink: String?
 57 | public var deferr: String?
    |            |- warning: var 'deferr' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'deferr' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'deferr' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 | public var color: String?
 59 | public var media: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:58:12: warning: var 'color' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 | public var vlink: String?
 57 | public var deferr: String?
 58 | public var color: String?
    |            |- warning: var 'color' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'color' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'color' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 | public var media: String?
 60 | public var title: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:59:12: warning: var 'media' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 57 | public var deferr: String?
 58 | public var color: String?
 59 | public var media: String?
    |            |- warning: var 'media' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'media' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'media' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 | public var title: String?
 61 | public var scope: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:60:12: warning: var 'title' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 | public var color: String?
 59 | public var media: String?
 60 | public var title: String?
    |            |- warning: var 'title' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'title' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 | public var scope: String?
 62 | public var classs: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:61:12: warning: var 'scope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 59 | public var media: String?
 60 | public var title: String?
 61 | public var scope: String?
    |            |- warning: var 'scope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'scope' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'scope' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | public var classs: String?
 63 | public var manifest: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:62:12: warning: var 'classs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 60 | public var title: String?
 61 | public var scope: String?
 62 | public var classs: String?
    |            |- warning: var 'classs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'classs' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'classs' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 | public var manifest: String?
 64 | public var value: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:63:12: warning: var 'manifest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 61 | public var scope: String?
 62 | public var classs: String?
 63 | public var manifest: String?
    |            |- warning: var 'manifest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'manifest' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'manifest' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | public var value: String?
 65 | public var clear: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:64:12: warning: var 'value' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 | public var classs: String?
 63 | public var manifest: String?
 64 | public var value: String?
    |            |- warning: var 'value' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'value' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'value' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 | public var clear: String?
 66 | public var start: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:65:12: warning: var 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 63 | public var manifest: String?
 64 | public var value: String?
 65 | public var clear: String?
    |            |- warning: var 'clear' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'clear' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'clear' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | public var start: String?
 67 | public var label: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:66:12: warning: var 'start' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 | public var value: String?
 65 | public var clear: String?
 66 | public var start: String?
    |            |- warning: var 'start' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'start' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'start' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 | public var label: String?
 68 | public var action: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:67:12: warning: var 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 | public var clear: String?
 66 | public var start: String?
 67 | public var label: String?
    |            |- warning: var 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'label' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 | public var action: String?
 69 | public var height: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:68:12: warning: var 'action' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 66 | public var start: String?
 67 | public var label: String?
 68 | public var action: String?
    |            |- warning: var 'action' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'action' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'action' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 | public var height: String?
 70 | public var method: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:69:12: warning: var 'height' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 | public var label: String?
 68 | public var action: String?
 69 | public var height: String?
    |            |- warning: var 'height' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'height' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'height' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 | public var method: String?
 71 | public var acceptt: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:70:12: warning: var 'method' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 68 | public var action: String?
 69 | public var height: String?
 70 | public var method: String?
    |            |- warning: var 'method' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'method' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'method' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 | public var acceptt: String?
 72 | public var object: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:71:12: warning: var 'acceptt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 69 | public var height: String?
 70 | public var method: String?
 71 | public var acceptt: String?
    |            |- warning: var 'acceptt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'acceptt' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'acceptt' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 | public var object: String?
 73 | public var scheme: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:72:12: warning: var 'object' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 70 | public var method: String?
 71 | public var acceptt: String?
 72 | public var object: String?
    |            |- warning: var 'object' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'object' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'object' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 | public var scheme: String?
 74 | public var coords: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:73:12: warning: var 'scheme' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 71 | public var acceptt: String?
 72 | public var object: String?
 73 | public var scheme: String?
    |            |- warning: var 'scheme' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'scheme' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'scheme' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 | public var coords: String?
 75 | public var usemap: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:74:12: warning: var 'coords' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 72 | public var object: String?
 73 | public var scheme: String?
 74 | public var coords: String?
    |            |- warning: var 'coords' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'coords' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'coords' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 | public var usemap: String?
 76 | public var onblur: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:75:12: warning: var 'usemap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 73 | public var scheme: String?
 74 | public var coords: String?
 75 | public var usemap: String?
    |            |- warning: var 'usemap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'usemap' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'usemap' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 | public var onblur: String?
 77 | public var nohref: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:76:12: warning: var 'onblur' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 | public var coords: String?
 75 | public var usemap: String?
 76 | public var onblur: String?
    |            |- warning: var 'onblur' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onblur' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onblur' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 | public var nohref: String?
 78 | public var nowrap: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:77:12: warning: var 'nohref' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 | public var usemap: String?
 76 | public var onblur: String?
 77 | public var nohref: String?
    |            |- warning: var 'nohref' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'nohref' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'nohref' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 | public var nowrap: String?
 79 | public var hspace: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:78:12: warning: var 'nowrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 | public var onblur: String?
 77 | public var nohref: String?
 78 | public var nowrap: String?
    |            |- warning: var 'nowrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'nowrap' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'nowrap' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 | public var hspace: String?
 80 | public var border: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:79:12: warning: var 'hspace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 | public var nohref: String?
 78 | public var nowrap: String?
 79 | public var hspace: String?
    |            |- warning: var 'hspace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'hspace' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'hspace' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 | public var border: String?
 81 | public var valign: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:80:12: warning: var 'border' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 | public var nowrap: String?
 79 | public var hspace: String?
 80 | public var border: String?
    |            |- warning: var 'border' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'border' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'border' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 | public var valign: String?
 82 | public var vspace: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:81:12: warning: var 'valign' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 79 | public var hspace: String?
 80 | public var border: String?
 81 | public var valign: String?
    |            |- warning: var 'valign' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'valign' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'valign' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 | public var vspace: String?
 83 | public var onload: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:82:12: warning: var 'vspace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 80 | public var border: String?
 81 | public var valign: String?
 82 | public var vspace: String?
    |            |- warning: var 'vspace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'vspace' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'vspace' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 | public var onload: String?
 84 | public var target: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:83:12: warning: var 'onload' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 | public var valign: String?
 82 | public var vspace: String?
 83 | public var onload: String?
    |            |- warning: var 'onload' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onload' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onload' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 | public var target: String?
 85 | public var prompt: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:84:12: warning: var 'target' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 82 | public var vspace: String?
 83 | public var onload: String?
 84 | public var target: String?
    |            |- warning: var 'target' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'target' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'target' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 | public var prompt: String?
 86 | public var onfocus: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:85:12: warning: var 'prompt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 83 | public var onload: String?
 84 | public var target: String?
 85 | public var prompt: String?
    |            |- warning: var 'prompt' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'prompt' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'prompt' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 | public var onfocus: String?
 87 | public var enctype: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:86:12: warning: var 'onfocus' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 84 | public var target: String?
 85 | public var prompt: String?
 86 | public var onfocus: String?
    |            |- warning: var 'onfocus' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onfocus' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onfocus' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 | public var enctype: String?
 88 | public var onclick: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:87:12: warning: var 'enctype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 85 | public var prompt: String?
 86 | public var onfocus: String?
 87 | public var enctype: String?
    |            |- warning: var 'enctype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'enctype' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'enctype' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 | public var onclick: String?
 89 | public var ontouchstart: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:88:12: warning: var 'onclick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 | public var onfocus: String?
 87 | public var enctype: String?
 88 | public var onclick: String?
    |            |- warning: var 'onclick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onclick' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onclick' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 | public var ontouchstart: String?
 90 | public var onkeyup: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:89:12: warning: var 'ontouchstart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 87 | public var enctype: String?
 88 | public var onclick: String?
 89 | public var ontouchstart: String?
    |            |- warning: var 'ontouchstart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'ontouchstart' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'ontouchstart' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 | public var onkeyup: String?
 91 | public var profile: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:90:12: warning: var 'onkeyup' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 88 | public var onclick: String?
 89 | public var ontouchstart: String?
 90 | public var onkeyup: String?
    |            |- warning: var 'onkeyup' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onkeyup' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onkeyup' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 | public var profile: String?
 92 | public var version: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:91:12: warning: var 'profile' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 89 | public var ontouchstart: String?
 90 | public var onkeyup: String?
 91 | public var profile: String?
    |            |- warning: var 'profile' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'profile' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'profile' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 92 | public var version: String?
 93 | public var onreset: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:92:12: warning: var 'version' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 90 | public var onkeyup: String?
 91 | public var profile: String?
 92 | public var version: String?
    |            |- warning: var 'version' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'version' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 | public var onreset: String?
 94 | public var charset: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:93:12: warning: var 'onreset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 | public var profile: String?
 92 | public var version: String?
 93 | public var onreset: String?
    |            |- warning: var 'onreset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onreset' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onreset' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 | public var charset: String?
 95 | public var standby: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:94:12: warning: var 'charset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 92 | public var version: String?
 93 | public var onreset: String?
 94 | public var charset: String?
    |            |- warning: var 'charset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'charset' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'charset' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 | public var standby: String?
 96 | public var colspan: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:95:12: warning: var 'standby' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 93 | public var onreset: String?
 94 | public var charset: String?
 95 | public var standby: String?
    |            |- warning: var 'standby' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'standby' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'standby' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 | public var colspan: String?
 97 | public var charoff: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:96:12: warning: var 'colspan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 | public var charset: String?
 95 | public var standby: String?
 96 | public var colspan: String?
    |            |- warning: var 'colspan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'colspan' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'colspan' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 | public var charoff: String?
 98 | public var classid: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:97:12: warning: var 'charoff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 95 | public var standby: String?
 96 | public var colspan: String?
 97 | public var charoff: String?
    |            |- warning: var 'charoff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'charoff' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'charoff' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 98 | public var classid: String?
 99 | public var compact: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:98:12: warning: var 'classid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 | public var colspan: String?
 97 | public var charoff: String?
 98 | public var classid: String?
    |            |- warning: var 'classid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'classid' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'classid' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 | public var compact: String?
100 | public var declare: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:99:12: warning: var 'compact' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 97 | public var charoff: String?
 98 | public var classid: String?
 99 | public var compact: String?
    |            |- warning: var 'compact' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'compact' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | public var declare: String?
101 | public var rowspan: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:100:12: warning: var 'declare' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 98 | public var classid: String?
 99 | public var compact: String?
100 | public var declare: String?
    |            |- warning: var 'declare' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'declare' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'declare' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | public var rowspan: String?
102 | public var checked: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:101:12: warning: var 'rowspan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 99 | public var compact: String?
100 | public var declare: String?
101 | public var rowspan: String?
    |            |- warning: var 'rowspan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'rowspan' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'rowspan' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 | public var checked: String?
103 | public var archive: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:102:12: warning: var 'checked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
100 | public var declare: String?
101 | public var rowspan: String?
102 | public var checked: String?
    |            |- warning: var 'checked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'checked' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'checked' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 | public var archive: String?
104 | public var bgcolor: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:103:12: warning: var 'archive' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
101 | public var rowspan: String?
102 | public var checked: String?
103 | public var archive: String?
    |            |- warning: var 'archive' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'archive' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'archive' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 | public var bgcolor: String?
105 | public var content: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:104:12: warning: var 'bgcolor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
102 | public var checked: String?
103 | public var archive: String?
104 | public var bgcolor: String?
    |            |- warning: var 'bgcolor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'bgcolor' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'bgcolor' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | public var content: String?
106 | public var noshade: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:105:12: warning: var 'content' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
103 | public var archive: String?
104 | public var bgcolor: String?
105 | public var content: String?
    |            |- warning: var 'content' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'content' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'content' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | public var noshade: String?
107 | public var summary: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:106:12: warning: var 'noshade' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | public var bgcolor: String?
105 | public var content: String?
106 | public var noshade: String?
    |            |- warning: var 'noshade' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'noshade' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'noshade' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | public var summary: String?
108 | public var headers: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:107:12: warning: var 'summary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public var content: String?
106 | public var noshade: String?
107 | public var summary: String?
    |            |- warning: var 'summary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'summary' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | public var headers: String?
109 | public var onselect: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:108:12: warning: var 'headers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | public var noshade: String?
107 | public var summary: String?
108 | public var headers: String?
    |            |- warning: var 'headers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'headers' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'headers' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | public var onselect: String?
110 | public var readonly: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:109:12: warning: var 'onselect' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
107 | public var summary: String?
108 | public var headers: String?
109 | public var onselect: String?
    |            |- warning: var 'onselect' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onselect' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onselect' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | public var readonly: String?
111 | public var tabindex: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:110:12: warning: var 'readonly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
108 | public var headers: String?
109 | public var onselect: String?
110 | public var readonly: String?
    |            |- warning: var 'readonly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'readonly' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'readonly' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
111 | public var tabindex: String?
112 | public var onchange: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:111:12: warning: var 'tabindex' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
109 | public var onselect: String?
110 | public var readonly: String?
111 | public var tabindex: String?
    |            |- warning: var 'tabindex' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'tabindex' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'tabindex' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 | public var onchange: String?
113 | public var noresize: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:112:12: warning: var 'onchange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
110 | public var readonly: String?
111 | public var tabindex: String?
112 | public var onchange: String?
    |            |- warning: var 'onchange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onchange' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onchange' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 | public var noresize: String?
114 | public var disabled: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:113:12: warning: var 'noresize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
111 | public var tabindex: String?
112 | public var onchange: String?
113 | public var noresize: String?
    |            |- warning: var 'noresize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'noresize' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'noresize' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 | public var disabled: String?
115 | public var longdesc: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:114:12: warning: var 'disabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
112 | public var onchange: String?
113 | public var noresize: String?
114 | public var disabled: String?
    |            |- warning: var 'disabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'disabled' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 | public var longdesc: String?
116 | public var codebase: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:115:12: warning: var 'longdesc' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
113 | public var noresize: String?
114 | public var disabled: String?
115 | public var longdesc: String?
    |            |- warning: var 'longdesc' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'longdesc' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'longdesc' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
116 | public var codebase: String?
117 | public var language: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:116:12: warning: var 'codebase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
114 | public var disabled: String?
115 | public var longdesc: String?
116 | public var codebase: String?
    |            |- warning: var 'codebase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'codebase' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'codebase' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | public var language: String?
118 | public var datetime: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:117:12: warning: var 'language' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
115 | public var longdesc: String?
116 | public var codebase: String?
117 | public var language: String?
    |            |- warning: var 'language' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'language' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'language' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | public var datetime: String?
119 | public var selected: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:118:12: warning: var 'datetime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
116 | public var codebase: String?
117 | public var language: String?
118 | public var datetime: String?
    |            |- warning: var 'datetime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'datetime' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'datetime' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 | public var selected: String?
120 | public var hreflang: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:119:12: warning: var 'selected' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
117 | public var language: String?
118 | public var datetime: String?
119 | public var selected: String?
    |            |- warning: var 'selected' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'selected' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'selected' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 | public var hreflang: String?
121 | public var onsubmit: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:120:12: warning: var 'hreflang' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
118 | public var datetime: String?
119 | public var selected: String?
120 | public var hreflang: String?
    |            |- warning: var 'hreflang' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'hreflang' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'hreflang' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | public var onsubmit: String?
122 | public var multiple: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:121:12: warning: var 'onsubmit' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
119 | public var selected: String?
120 | public var hreflang: String?
121 | public var onsubmit: String?
    |            |- warning: var 'onsubmit' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onsubmit' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onsubmit' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 | public var multiple: String?
123 | public var onunload: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:122:12: warning: var 'multiple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | public var hreflang: String?
121 | public var onsubmit: String?
122 | public var multiple: String?
    |            |- warning: var 'multiple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'multiple' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'multiple' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 | public var onunload: String?
124 | public var codetype: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:123:12: warning: var 'onunload' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
121 | public var onsubmit: String?
122 | public var multiple: String?
123 | public var onunload: String?
    |            |- warning: var 'onunload' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onunload' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onunload' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 | public var codetype: String?
125 | public var scrolling: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:124:12: warning: var 'codetype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
122 | public var multiple: String?
123 | public var onunload: String?
124 | public var codetype: String?
    |            |- warning: var 'codetype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'codetype' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'codetype' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 | public var scrolling: String?
126 | public var onkeydown: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:125:12: warning: var 'scrolling' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
123 | public var onunload: String?
124 | public var codetype: String?
125 | public var scrolling: String?
    |            |- warning: var 'scrolling' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'scrolling' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'scrolling' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | public var onkeydown: String?
127 | public var maxlength: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:126:12: warning: var 'onkeydown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 | public var codetype: String?
125 | public var scrolling: String?
126 | public var onkeydown: String?
    |            |- warning: var 'onkeydown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onkeydown' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onkeydown' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | public var maxlength: String?
128 | public var valuetype: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:127:12: warning: var 'maxlength' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 | public var scrolling: String?
126 | public var onkeydown: String?
127 | public var maxlength: String?
    |            |- warning: var 'maxlength' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'maxlength' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'maxlength' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | public var valuetype: String?
129 | public var accesskey: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:128:12: warning: var 'valuetype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 | public var onkeydown: String?
127 | public var maxlength: String?
128 | public var valuetype: String?
    |            |- warning: var 'valuetype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'valuetype' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'valuetype' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | public var accesskey: String?
130 | public var onmouseup: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:129:12: warning: var 'accesskey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
127 | public var maxlength: String?
128 | public var valuetype: String?
129 | public var accesskey: String?
    |            |- warning: var 'accesskey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'accesskey' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'accesskey' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 | public var onmouseup: String?
131 | public var autofocus: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:130:12: warning: var 'onmouseup' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
128 | public var valuetype: String?
129 | public var accesskey: String?
130 | public var onmouseup: String?
    |            |- warning: var 'onmouseup' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmouseup' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmouseup' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | public var autofocus: String?
132 | public var onkeypress: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:131:12: warning: var 'autofocus' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
129 | public var accesskey: String?
130 | public var onmouseup: String?
131 | public var autofocus: String?
    |            |- warning: var 'autofocus' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'autofocus' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'autofocus' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 | public var onkeypress: String?
133 | public var ondblclick: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:132:12: warning: var 'onkeypress' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
130 | public var onmouseup: String?
131 | public var autofocus: String?
132 | public var onkeypress: String?
    |            |- warning: var 'onkeypress' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onkeypress' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onkeypress' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 | public var ondblclick: String?
134 | public var onmouseout: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:133:12: warning: var 'ondblclick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 | public var autofocus: String?
132 | public var onkeypress: String?
133 | public var ondblclick: String?
    |            |- warning: var 'ondblclick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'ondblclick' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'ondblclick' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | public var onmouseout: String?
135 | public var httpEquiv: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:134:12: warning: var 'onmouseout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 | public var onkeypress: String?
133 | public var ondblclick: String?
134 | public var onmouseout: String?
    |            |- warning: var 'onmouseout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmouseout' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmouseout' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 | public var httpEquiv: String?
136 | public var dataText: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:135:12: warning: var 'httpEquiv' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
133 | public var ondblclick: String?
134 | public var onmouseout: String?
135 | public var httpEquiv: String?
    |            |- warning: var 'httpEquiv' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'httpEquiv' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'httpEquiv' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | public var dataText: String?
137 | public var background: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:136:12: warning: var 'dataText' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
134 | public var onmouseout: String?
135 | public var httpEquiv: String?
136 | public var dataText: String?
    |            |- warning: var 'dataText' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'dataText' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'dataText' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
137 | public var background: String?
138 | public var onmousemove: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:137:12: warning: var 'background' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 | public var httpEquiv: String?
136 | public var dataText: String?
137 | public var background: String?
    |            |- warning: var 'background' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'background' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'background' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 | public var onmousemove: String?
139 | public var onmouseover: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:138:12: warning: var 'onmousemove' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 | public var dataText: String?
137 | public var background: String?
138 | public var onmousemove: String?
    |            |- warning: var 'onmousemove' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmousemove' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmousemove' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 | public var onmouseover: String?
140 | public var cellpadding: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:139:12: warning: var 'onmouseover' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
137 | public var background: String?
138 | public var onmousemove: String?
139 | public var onmouseover: String?
    |            |- warning: var 'onmouseover' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmouseover' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmouseover' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 | public var cellpadding: String?
141 | public var onmousedown: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:140:12: warning: var 'cellpadding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | public var onmousemove: String?
139 | public var onmouseover: String?
140 | public var cellpadding: String?
    |            |- warning: var 'cellpadding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'cellpadding' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'cellpadding' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 | public var onmousedown: String?
142 | public var frameborder: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:141:12: warning: var 'onmousedown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
139 | public var onmouseover: String?
140 | public var cellpadding: String?
141 | public var onmousedown: String?
    |            |- warning: var 'onmousedown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'onmousedown' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'onmousedown' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 | public var frameborder: String?
143 | public var marginwidth: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:142:12: warning: var 'frameborder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
140 | public var cellpadding: String?
141 | public var onmousedown: String?
142 | public var frameborder: String?
    |            |- warning: var 'frameborder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'frameborder' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'frameborder' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
143 | public var marginwidth: String?
144 | public var cellspacing: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:143:12: warning: var 'marginwidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
141 | public var onmousedown: String?
142 | public var frameborder: String?
143 | public var marginwidth: String?
    |            |- warning: var 'marginwidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'marginwidth' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'marginwidth' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
144 | public var cellspacing: String?
145 | public var placeholder: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:144:12: warning: var 'cellspacing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
142 | public var frameborder: String?
143 | public var marginwidth: String?
144 | public var cellspacing: String?
    |            |- warning: var 'cellspacing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'cellspacing' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'cellspacing' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 | public var placeholder: String?
146 | public var marginheight: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:145:12: warning: var 'placeholder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 | public var marginwidth: String?
144 | public var cellspacing: String?
145 | public var placeholder: String?
    |            |- warning: var 'placeholder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'placeholder' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'placeholder' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | public var marginheight: String?
147 | public var acceptCharset: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:146:12: warning: var 'marginheight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
144 | public var cellspacing: String?
145 | public var placeholder: String?
146 | public var marginheight: String?
    |            |- warning: var 'marginheight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'marginheight' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'marginheight' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | public var acceptCharset: String?
148 |
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:147:12: warning: var 'acceptCharset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
145 | public var placeholder: String?
146 | public var marginheight: String?
147 | public var acceptCharset: String?
    |            |- warning: var 'acceptCharset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'acceptCharset' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'acceptCharset' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 |
149 | public var inner: String?
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:149:12: warning: var 'inner' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
147 | public var acceptCharset: String?
148 |
149 | public var inner: String?
    |            |- warning: var 'inner' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'inner' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: annotate 'inner' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |
151 | public func a(_ closure: Closure) { element("a", closure) }
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:336:5: warning: var 'scopesBuffer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
334 | public func element(_ node: String, _ attrs: [String: String?] = [:], _ closure: Closure) { evaluate(node, attrs, closure) }
335 |
336 | var scopesBuffer = [UInt64: String]()
    |     |- warning: var 'scopesBuffer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'scopesBuffer' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'scopesBuffer' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
337 |
338 | // swiftlint:disable cyclomatic_complexity function_body_length
[23/28] Compiling Swifter Socket.swift
[24/28] Compiling Swifter String+BASE64.swift
[25/29] Wrapping AST for Swifter for debugging
[27/31] Emitting module Example
/host/spi-builder-workspace/Example/main.swift:9:15: warning: reference to var 'src' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 7 |     body {
 8 |       center {
 9 |         img { src = "https://swift.org/assets/images/swift.svg" }
   |               `- warning: reference to var 'src' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
10 |       }
11 |     }
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:29:12: note: var declared here
 27 | public var alt: String?
 28 | public var forr: String?
 29 | public var src: String?
    |            `- note: var declared here
 30 | public var type: String?
 31 | public var href: String?
[28/31] Compiling Example main.swift
/host/spi-builder-workspace/Example/main.swift:9:15: warning: reference to var 'src' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 7 |     body {
 8 |       center {
 9 |         img { src = "https://swift.org/assets/images/swift.svg" }
   |               `- warning: reference to var 'src' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
10 |       }
11 |     }
/host/spi-builder-workspace/XCode/Sources/Scopes.swift:29:12: note: var declared here
 27 | public var alt: String?
 28 | public var forr: String?
 29 | public var src: String?
    |            `- note: var declared here
 30 | public var type: String?
 31 | public var href: String?
[29/32] Wrapping AST for Example for debugging
[30/32] Write Objects.LinkFileList
[31/32] Linking Example
Build complete! (13.14s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Swifter",
  "name" : "Swifter",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Swifter",
      "targets" : [
        "Swifter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Example",
      "targets" : [
        "Example"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwifterTests",
      "module_type" : "SwiftTarget",
      "name" : "SwifterTests",
      "path" : "XCode/Tests",
      "sources" : [
        "IOSafetyTests.swift",
        "MimeTypesTests.swift",
        "PingServer.swift",
        "ServerThreadingTests.swift",
        "SwifterTestsHttpParser.swift",
        "SwifterTestsHttpResponseBody.swift",
        "SwifterTestsHttpRouter.swift",
        "SwifterTestsStringExtensions.swift",
        "SwifterTestsWebSocketSession.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Swifter"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Swifter",
      "module_type" : "SwiftTarget",
      "name" : "Swifter",
      "path" : "XCode/Sources",
      "product_memberships" : [
        "Swifter",
        "Example"
      ],
      "sources" : [
        "DemoServer.swift",
        "Errno.swift",
        "Files.swift",
        "HttpParser.swift",
        "HttpRequest.swift",
        "HttpResponse.swift",
        "HttpRouter.swift",
        "HttpServer.swift",
        "HttpServerIO.swift",
        "MimeTypes.swift",
        "Process.swift",
        "Scopes.swift",
        "Socket+File.swift",
        "Socket+Server.swift",
        "Socket.swift",
        "String+BASE64.swift",
        "String+File.swift",
        "String+Misc.swift",
        "String+SHA1.swift",
        "WebSockets.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Example",
      "module_type" : "SwiftTarget",
      "name" : "Example",
      "path" : "Example",
      "product_memberships" : [
        "Example"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Swifter"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.0"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.