Build Information
Failed to build Plot, reference master (431c27
), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 10:55:49 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
| `- error: type 'ElementDefinitions.TableHeaderCell' does not conform to protocol 'ElementDefinition'
182 | }
183 |
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
[68/70] Compiling Plot HTMLFormContentType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:137:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 | public enum ElementDefinitions {
136 | /// Definition for the `<article>` element.
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:137:17: error: type 'ElementDefinitions.Article' does not conform to protocol 'ElementDefinition'
135 | public enum ElementDefinitions {
136 | /// Definition for the `<article>` element.
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
| `- error: type 'ElementDefinitions.Article' does not conform to protocol 'ElementDefinition'
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:139:62: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:139:17: error: type 'ElementDefinitions.Aside' does not conform to protocol 'ElementDefinition'
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
| `- error: type 'ElementDefinitions.Aside' does not conform to protocol 'ElementDefinition'
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:141:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:141:17: error: type 'ElementDefinitions.Button' does not conform to protocol 'ElementDefinition'
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
| `- error: type 'ElementDefinitions.Button' does not conform to protocol 'ElementDefinition'
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:143:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:143:17: error: type 'ElementDefinitions.Details' does not conform to protocol 'ElementDefinition'
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
| `- error: type 'ElementDefinitions.Details' does not conform to protocol 'ElementDefinition'
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:145:60: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:145:17: error: type 'ElementDefinitions.Div' does not conform to protocol 'ElementDefinition'
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
| `- error: type 'ElementDefinitions.Div' does not conform to protocol 'ElementDefinition'
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:147:65: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:147:17: error: type 'ElementDefinitions.FieldSet' does not conform to protocol 'ElementDefinition'
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
| `- error: type 'ElementDefinitions.FieldSet' does not conform to protocol 'ElementDefinition'
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:149:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:149:17: error: type 'ElementDefinitions.Footer' does not conform to protocol 'ElementDefinition'
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
| `- error: type 'ElementDefinitions.Footer' does not conform to protocol 'ElementDefinition'
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:151:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:151:17: error: type 'ElementDefinitions.H1' does not conform to protocol 'ElementDefinition'
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
| `- error: type 'ElementDefinitions.H1' does not conform to protocol 'ElementDefinition'
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:153:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:153:17: error: type 'ElementDefinitions.H2' does not conform to protocol 'ElementDefinition'
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
| `- error: type 'ElementDefinitions.H2' does not conform to protocol 'ElementDefinition'
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:155:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:155:17: error: type 'ElementDefinitions.H3' does not conform to protocol 'ElementDefinition'
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
| `- error: type 'ElementDefinitions.H3' does not conform to protocol 'ElementDefinition'
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:157:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:157:17: error: type 'ElementDefinitions.H4' does not conform to protocol 'ElementDefinition'
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
| `- error: type 'ElementDefinitions.H4' does not conform to protocol 'ElementDefinition'
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:159:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:159:17: error: type 'ElementDefinitions.H5' does not conform to protocol 'ElementDefinition'
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
| `- error: type 'ElementDefinitions.H5' does not conform to protocol 'ElementDefinition'
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:161:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:161:17: error: type 'ElementDefinitions.H6' does not conform to protocol 'ElementDefinition'
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
| `- error: type 'ElementDefinitions.H6' does not conform to protocol 'ElementDefinition'
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:163:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:163:17: error: type 'ElementDefinitions.Header' does not conform to protocol 'ElementDefinition'
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
| `- error: type 'ElementDefinitions.Header' does not conform to protocol 'ElementDefinition'
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:165:65: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:165:17: error: type 'ElementDefinitions.ListItem' does not conform to protocol 'ElementDefinition'
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
| `- error: type 'ElementDefinitions.ListItem' does not conform to protocol 'ElementDefinition'
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:167:61: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:167:17: error: type 'ElementDefinitions.Main' does not conform to protocol 'ElementDefinition'
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
| `- error: type 'ElementDefinitions.Main' does not conform to protocol 'ElementDefinition'
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:169:67: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:169:17: error: type 'ElementDefinitions.Navigation' does not conform to protocol 'ElementDefinition'
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
| `- error: type 'ElementDefinitions.Navigation' does not conform to protocol 'ElementDefinition'
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:171:66: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:171:17: error: type 'ElementDefinitions.Paragraph' does not conform to protocol 'ElementDefinition'
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
| `- error: type 'ElementDefinitions.Paragraph' does not conform to protocol 'ElementDefinition'
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:173:61: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:173:17: error: type 'ElementDefinitions.Span' does not conform to protocol 'ElementDefinition'
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
| `- error: type 'ElementDefinitions.Span' does not conform to protocol 'ElementDefinition'
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:175:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:175:17: error: type 'ElementDefinitions.Summary' does not conform to protocol 'ElementDefinition'
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
| `- error: type 'ElementDefinitions.Summary' does not conform to protocol 'ElementDefinition'
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:177:69: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:177:17: error: type 'ElementDefinitions.TableCaption' does not conform to protocol 'ElementDefinition'
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
| `- error: type 'ElementDefinitions.TableCaption' does not conform to protocol 'ElementDefinition'
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:179:66: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:179:17: error: type 'ElementDefinitions.TableCell' does not conform to protocol 'ElementDefinition'
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
| `- error: type 'ElementDefinitions.TableCell' does not conform to protocol 'ElementDefinition'
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:181:72: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
182 | }
183 |
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:181:17: error: type 'ElementDefinitions.TableHeaderCell' does not conform to protocol 'ElementDefinition'
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
| `- error: type 'ElementDefinitions.TableHeaderCell' does not conform to protocol 'ElementDefinition'
182 | }
183 |
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
[69/70] Compiling Plot HTMLFormMethod.swift
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:137:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 | public enum ElementDefinitions {
136 | /// Definition for the `<article>` element.
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:137:17: error: type 'ElementDefinitions.Article' does not conform to protocol 'ElementDefinition'
135 | public enum ElementDefinitions {
136 | /// Definition for the `<article>` element.
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
| `- error: type 'ElementDefinitions.Article' does not conform to protocol 'ElementDefinition'
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:139:62: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:139:17: error: type 'ElementDefinitions.Aside' does not conform to protocol 'ElementDefinition'
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
| `- error: type 'ElementDefinitions.Aside' does not conform to protocol 'ElementDefinition'
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:141:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:141:17: error: type 'ElementDefinitions.Button' does not conform to protocol 'ElementDefinition'
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
| `- error: type 'ElementDefinitions.Button' does not conform to protocol 'ElementDefinition'
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:143:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:143:17: error: type 'ElementDefinitions.Details' does not conform to protocol 'ElementDefinition'
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
| `- error: type 'ElementDefinitions.Details' does not conform to protocol 'ElementDefinition'
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:145:60: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:145:17: error: type 'ElementDefinitions.Div' does not conform to protocol 'ElementDefinition'
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
| `- error: type 'ElementDefinitions.Div' does not conform to protocol 'ElementDefinition'
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:147:65: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:147:17: error: type 'ElementDefinitions.FieldSet' does not conform to protocol 'ElementDefinition'
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
| `- error: type 'ElementDefinitions.FieldSet' does not conform to protocol 'ElementDefinition'
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:149:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:149:17: error: type 'ElementDefinitions.Footer' does not conform to protocol 'ElementDefinition'
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
| `- error: type 'ElementDefinitions.Footer' does not conform to protocol 'ElementDefinition'
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:151:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:151:17: error: type 'ElementDefinitions.H1' does not conform to protocol 'ElementDefinition'
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
| `- error: type 'ElementDefinitions.H1' does not conform to protocol 'ElementDefinition'
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:153:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:153:17: error: type 'ElementDefinitions.H2' does not conform to protocol 'ElementDefinition'
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
| `- error: type 'ElementDefinitions.H2' does not conform to protocol 'ElementDefinition'
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:155:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:155:17: error: type 'ElementDefinitions.H3' does not conform to protocol 'ElementDefinition'
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
| `- error: type 'ElementDefinitions.H3' does not conform to protocol 'ElementDefinition'
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:157:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:157:17: error: type 'ElementDefinitions.H4' does not conform to protocol 'ElementDefinition'
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
| `- error: type 'ElementDefinitions.H4' does not conform to protocol 'ElementDefinition'
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:159:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:159:17: error: type 'ElementDefinitions.H5' does not conform to protocol 'ElementDefinition'
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
| `- error: type 'ElementDefinitions.H5' does not conform to protocol 'ElementDefinition'
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:161:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:161:17: error: type 'ElementDefinitions.H6' does not conform to protocol 'ElementDefinition'
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
| `- error: type 'ElementDefinitions.H6' does not conform to protocol 'ElementDefinition'
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:163:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:163:17: error: type 'ElementDefinitions.Header' does not conform to protocol 'ElementDefinition'
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
| `- error: type 'ElementDefinitions.Header' does not conform to protocol 'ElementDefinition'
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:165:65: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:165:17: error: type 'ElementDefinitions.ListItem' does not conform to protocol 'ElementDefinition'
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
| `- error: type 'ElementDefinitions.ListItem' does not conform to protocol 'ElementDefinition'
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:167:61: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:167:17: error: type 'ElementDefinitions.Main' does not conform to protocol 'ElementDefinition'
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
| `- error: type 'ElementDefinitions.Main' does not conform to protocol 'ElementDefinition'
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:169:67: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:169:17: error: type 'ElementDefinitions.Navigation' does not conform to protocol 'ElementDefinition'
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
| `- error: type 'ElementDefinitions.Navigation' does not conform to protocol 'ElementDefinition'
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:171:66: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:171:17: error: type 'ElementDefinitions.Paragraph' does not conform to protocol 'ElementDefinition'
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
| `- error: type 'ElementDefinitions.Paragraph' does not conform to protocol 'ElementDefinition'
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:173:61: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:173:17: error: type 'ElementDefinitions.Span' does not conform to protocol 'ElementDefinition'
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
| `- error: type 'ElementDefinitions.Span' does not conform to protocol 'ElementDefinition'
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:175:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:175:17: error: type 'ElementDefinitions.Summary' does not conform to protocol 'ElementDefinition'
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
| `- error: type 'ElementDefinitions.Summary' does not conform to protocol 'ElementDefinition'
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:177:69: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:177:17: error: type 'ElementDefinitions.TableCaption' does not conform to protocol 'ElementDefinition'
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
| `- error: type 'ElementDefinitions.TableCaption' does not conform to protocol 'ElementDefinition'
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:179:66: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:179:17: error: type 'ElementDefinitions.TableCell' does not conform to protocol 'ElementDefinition'
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
| `- error: type 'ElementDefinitions.TableCell' does not conform to protocol 'ElementDefinition'
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:181:72: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
182 | }
183 |
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:181:17: error: type 'ElementDefinitions.TableHeaderCell' does not conform to protocol 'ElementDefinition'
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
| `- error: type 'ElementDefinitions.TableHeaderCell' does not conform to protocol 'ElementDefinition'
182 | }
183 |
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
[70/70] Compiling Plot HTMLInputType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:137:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 | public enum ElementDefinitions {
136 | /// Definition for the `<article>` element.
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:137:17: error: type 'ElementDefinitions.Article' does not conform to protocol 'ElementDefinition'
135 | public enum ElementDefinitions {
136 | /// Definition for the `<article>` element.
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
| `- error: type 'ElementDefinitions.Article' does not conform to protocol 'ElementDefinition'
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:139:62: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:139:17: error: type 'ElementDefinitions.Aside' does not conform to protocol 'ElementDefinition'
137 | public enum Article: ElementDefinition { public static var wrapper = Node.article }
138 | /// Definition for the `<aside>` element.
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
| `- error: type 'ElementDefinitions.Aside' does not conform to protocol 'ElementDefinition'
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:141:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:141:17: error: type 'ElementDefinitions.Button' does not conform to protocol 'ElementDefinition'
139 | public enum Aside: ElementDefinition { public static var wrapper = Node.aside }
140 | /// Definition for the `<button>` element.
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
| `- error: type 'ElementDefinitions.Button' does not conform to protocol 'ElementDefinition'
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:143:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:143:17: error: type 'ElementDefinitions.Details' does not conform to protocol 'ElementDefinition'
141 | public enum Button: ElementDefinition { public static var wrapper = Node.button }
142 | /// Definition for the `<details>` element.
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
| `- error: type 'ElementDefinitions.Details' does not conform to protocol 'ElementDefinition'
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:145:60: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:145:17: error: type 'ElementDefinitions.Div' does not conform to protocol 'ElementDefinition'
143 | public enum Details: ElementDefinition { public static var wrapper = Node.details }
144 | /// Definition for the `<div>` element.
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
| `- error: type 'ElementDefinitions.Div' does not conform to protocol 'ElementDefinition'
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:147:65: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:147:17: error: type 'ElementDefinitions.FieldSet' does not conform to protocol 'ElementDefinition'
145 | public enum Div: ElementDefinition { public static var wrapper = Node<HTML.BodyContext>.div }
146 | /// Definition for the `<fieldset>` element.
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
| `- error: type 'ElementDefinitions.FieldSet' does not conform to protocol 'ElementDefinition'
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:149:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:149:17: error: type 'ElementDefinitions.Footer' does not conform to protocol 'ElementDefinition'
147 | public enum FieldSet: ElementDefinition { public static var wrapper = Node.fieldset }
148 | /// Definition for the `<footer>` element.
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
| `- error: type 'ElementDefinitions.Footer' does not conform to protocol 'ElementDefinition'
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:151:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:151:17: error: type 'ElementDefinitions.H1' does not conform to protocol 'ElementDefinition'
149 | public enum Footer: ElementDefinition { public static var wrapper = Node.footer }
150 | /// Definition for the `<h1>` element.
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
| `- error: type 'ElementDefinitions.H1' does not conform to protocol 'ElementDefinition'
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:153:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:153:17: error: type 'ElementDefinitions.H2' does not conform to protocol 'ElementDefinition'
151 | public enum H1: ElementDefinition { public static var wrapper = Node.h1 }
152 | /// Definition for the `<h2>` element.
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
| `- error: type 'ElementDefinitions.H2' does not conform to protocol 'ElementDefinition'
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:155:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:155:17: error: type 'ElementDefinitions.H3' does not conform to protocol 'ElementDefinition'
153 | public enum H2: ElementDefinition { public static var wrapper = Node.h2 }
154 | /// Definition for the `<h3>` element.
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
| `- error: type 'ElementDefinitions.H3' does not conform to protocol 'ElementDefinition'
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:157:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:157:17: error: type 'ElementDefinitions.H4' does not conform to protocol 'ElementDefinition'
155 | public enum H3: ElementDefinition { public static var wrapper = Node.h3 }
156 | /// Definition for the `<h4>` element.
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
| `- error: type 'ElementDefinitions.H4' does not conform to protocol 'ElementDefinition'
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:159:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:159:17: error: type 'ElementDefinitions.H5' does not conform to protocol 'ElementDefinition'
157 | public enum H4: ElementDefinition { public static var wrapper = Node.h4 }
158 | /// Definition for the `<h5>` element.
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
| `- error: type 'ElementDefinitions.H5' does not conform to protocol 'ElementDefinition'
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:161:59: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:161:17: error: type 'ElementDefinitions.H6' does not conform to protocol 'ElementDefinition'
159 | public enum H5: ElementDefinition { public static var wrapper = Node.h5 }
160 | /// Definition for the `<h6>` element.
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
| `- error: type 'ElementDefinitions.H6' does not conform to protocol 'ElementDefinition'
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:163:63: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:163:17: error: type 'ElementDefinitions.Header' does not conform to protocol 'ElementDefinition'
161 | public enum H6: ElementDefinition { public static var wrapper = Node.h6 }
162 | /// Definition for the `<header>` element.
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
| `- error: type 'ElementDefinitions.Header' does not conform to protocol 'ElementDefinition'
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:165:65: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:165:17: error: type 'ElementDefinitions.ListItem' does not conform to protocol 'ElementDefinition'
163 | public enum Header: ElementDefinition { public static var wrapper = Node.header }
164 | /// Definition for the `<li>` element.
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
| `- error: type 'ElementDefinitions.ListItem' does not conform to protocol 'ElementDefinition'
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:167:61: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:167:17: error: type 'ElementDefinitions.Main' does not conform to protocol 'ElementDefinition'
165 | public enum ListItem: ElementDefinition { public static var wrapper = Node.li }
166 | /// Definition for the `<main>` element.
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
| `- error: type 'ElementDefinitions.Main' does not conform to protocol 'ElementDefinition'
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:169:67: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:169:17: error: type 'ElementDefinitions.Navigation' does not conform to protocol 'ElementDefinition'
167 | public enum Main: ElementDefinition { public static var wrapper = Node.main }
168 | /// Definition for the `<nav>` element.
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
| `- error: type 'ElementDefinitions.Navigation' does not conform to protocol 'ElementDefinition'
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:171:66: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:171:17: error: type 'ElementDefinitions.Paragraph' does not conform to protocol 'ElementDefinition'
169 | public enum Navigation: ElementDefinition { public static var wrapper = Node.nav }
170 | /// Definition for the `<p>` element.
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
| `- error: type 'ElementDefinitions.Paragraph' does not conform to protocol 'ElementDefinition'
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:173:61: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:173:17: error: type 'ElementDefinitions.Span' does not conform to protocol 'ElementDefinition'
171 | public enum Paragraph: ElementDefinition { public static var wrapper = Node.p }
172 | /// Definition for the `<span>` element.
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
| `- error: type 'ElementDefinitions.Span' does not conform to protocol 'ElementDefinition'
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:175:64: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:175:17: error: type 'ElementDefinitions.Summary' does not conform to protocol 'ElementDefinition'
173 | public enum Span: ElementDefinition { public static var wrapper = Node.span }
174 | /// Definition for the `<summary>` element.
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
| `- error: type 'ElementDefinitions.Summary' does not conform to protocol 'ElementDefinition'
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:177:69: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:177:17: error: type 'ElementDefinitions.TableCaption' does not conform to protocol 'ElementDefinition'
175 | public enum Summary: ElementDefinition { public static var wrapper = Node.summary }
176 | /// Definition for the `<caption>` element.
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
| `- error: type 'ElementDefinitions.TableCaption' does not conform to protocol 'ElementDefinition'
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:179:66: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:179:17: error: type 'ElementDefinitions.TableCell' does not conform to protocol 'ElementDefinition'
177 | public enum TableCaption: ElementDefinition { public static var wrapper = Node.caption }
178 | /// Definition for the `<td>` element.
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
| `- error: type 'ElementDefinitions.TableCell' does not conform to protocol 'ElementDefinition'
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:181:72: warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
| |- warning: static property 'wrapper' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'wrapper' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'wrapper' 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
182 | }
183 |
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/HTMLComponents.swift:181:17: error: type 'ElementDefinitions.TableHeaderCell' does not conform to protocol 'ElementDefinition'
179 | public enum TableCell: ElementDefinition { public static var wrapper = Node.td }
180 | /// Definition for the `<th>` element.
181 | public enum TableHeaderCell: ElementDefinition { public static var wrapper = Node.th }
| `- error: type 'ElementDefinitions.TableHeaderCell' does not conform to protocol 'ElementDefinition'
182 | }
183 |
/Users/admin/builder/spi-builder-workspace/Sources/Plot/API/ElementDefinition.swift:15:20: note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
13 | public protocol ElementDefinition {
14 | /// The context that the element's content nodes should all have.
15 | associatedtype InputContext
| `- note: protocol requires nested type 'InputContext'; add nested type 'InputContext' for conformance
16 | /// The context that the element's own node should have.
17 | associatedtype OutputContext
| `- note: protocol requires nested type 'OutputContext'; add nested type 'OutputContext' for conformance
18 | /// A closure that can be used to wrap a list of nodes into an element node.
19 | static var wrapper: (Node<InputContext>...) -> Node<OutputContext> { get }
BUILD FAILURE 6.0 macosSpm