The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build XMLMapper, reference master (6218f3), with Swift 6.1 for Linux on 26 Apr 2025 22:03:28 UTC.

Build Command

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

Build Log

   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:26:27: warning: static property 'prefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
   |                           |- warning: static property 'prefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'prefixedAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:27:27: warning: static property 'unprefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
   |                           |- warning: static property 'unprefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'unprefixedAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:28:27: warning: static property 'dictionaryAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
   |                           |- warning: static property 'dictionaryAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'dictionaryAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
30 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:29:27: warning: static property 'discardAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
   |                           |- warning: static property 'discardAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'discardAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:31:27: warning: static property 'rootOnlyNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
   |                           |- warning: static property 'rootOnlyNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'rootOnlyNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:32:27: warning: static property 'alwaysNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
   |                           |- warning: static property 'alwaysNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'alwaysNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
34 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:33:27: warning: static property 'neverNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
   |                           |- warning: static property 'neverNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'neverNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:35:27: warning: static property 'cdataAsString' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
34 |
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
   |                           |- warning: static property 'cdataAsString' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'cdataAsString' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |         public static let `default`: ReadingOptions = [
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:37:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
36 |
37 |         public static let `default`: ReadingOptions = [
   |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |             .collapseTextNodes,
39 |             .trimWhiteSpace,
[23/39] Compiling XMLMapper XMLSerialization.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:18:27: warning: static property 'collapseTextNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
16 |         }
17 |
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
   |                           |- warning: static property 'collapseTextNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'collapseTextNodes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:19:27: warning: static property 'stripEmptyNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
17 |
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
   |                           |- warning: static property 'stripEmptyNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'stripEmptyNodes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:20:27: warning: static property 'trimWhiteSpace' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
   |                           |- warning: static property 'trimWhiteSpace' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'trimWhiteSpace' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:21:27: warning: static property 'alwaysUseArrays' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
   |                           |- warning: static property 'alwaysUseArrays' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'alwaysUseArrays' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:22:27: warning: static property 'preserveComments' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
   |                           |- warning: static property 'preserveComments' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'preserveComments' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:23:27: warning: static property 'wrapRootNode' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
   |                           |- warning: static property 'wrapRootNode' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'wrapRootNode' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
25 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:24:27: warning: static property 'keepNodesOrder' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
   |                           |- warning: static property 'keepNodesOrder' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'keepNodesOrder' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:26:27: warning: static property 'prefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
   |                           |- warning: static property 'prefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'prefixedAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:27:27: warning: static property 'unprefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
   |                           |- warning: static property 'unprefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'unprefixedAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:28:27: warning: static property 'dictionaryAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
   |                           |- warning: static property 'dictionaryAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'dictionaryAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
30 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:29:27: warning: static property 'discardAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
   |                           |- warning: static property 'discardAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'discardAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:31:27: warning: static property 'rootOnlyNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
   |                           |- warning: static property 'rootOnlyNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'rootOnlyNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:32:27: warning: static property 'alwaysNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
   |                           |- warning: static property 'alwaysNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'alwaysNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
34 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:33:27: warning: static property 'neverNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
   |                           |- warning: static property 'neverNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'neverNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:35:27: warning: static property 'cdataAsString' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
34 |
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
   |                           |- warning: static property 'cdataAsString' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'cdataAsString' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |         public static let `default`: ReadingOptions = [
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:37:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
36 |
37 |         public static let `default`: ReadingOptions = [
   |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |             .collapseTextNodes,
39 |             .trimWhiteSpace,
[24/39] Compiling XMLMapper XMLStringConvertibleOperators.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:18:27: warning: static property 'collapseTextNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
16 |         }
17 |
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
   |                           |- warning: static property 'collapseTextNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'collapseTextNodes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:19:27: warning: static property 'stripEmptyNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
17 |
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
   |                           |- warning: static property 'stripEmptyNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'stripEmptyNodes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:20:27: warning: static property 'trimWhiteSpace' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
   |                           |- warning: static property 'trimWhiteSpace' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'trimWhiteSpace' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:21:27: warning: static property 'alwaysUseArrays' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
   |                           |- warning: static property 'alwaysUseArrays' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'alwaysUseArrays' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:22:27: warning: static property 'preserveComments' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
   |                           |- warning: static property 'preserveComments' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'preserveComments' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:23:27: warning: static property 'wrapRootNode' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
   |                           |- warning: static property 'wrapRootNode' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'wrapRootNode' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
25 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:24:27: warning: static property 'keepNodesOrder' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
   |                           |- warning: static property 'keepNodesOrder' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'keepNodesOrder' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:26:27: warning: static property 'prefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
   |                           |- warning: static property 'prefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'prefixedAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:27:27: warning: static property 'unprefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
   |                           |- warning: static property 'unprefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'unprefixedAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:28:27: warning: static property 'dictionaryAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
   |                           |- warning: static property 'dictionaryAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'dictionaryAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
30 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:29:27: warning: static property 'discardAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
   |                           |- warning: static property 'discardAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'discardAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:31:27: warning: static property 'rootOnlyNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
   |                           |- warning: static property 'rootOnlyNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'rootOnlyNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:32:27: warning: static property 'alwaysNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
   |                           |- warning: static property 'alwaysNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'alwaysNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
34 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:33:27: warning: static property 'neverNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
   |                           |- warning: static property 'neverNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'neverNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:35:27: warning: static property 'cdataAsString' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
34 |
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
   |                           |- warning: static property 'cdataAsString' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'cdataAsString' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |         public static let `default`: ReadingOptions = [
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:37:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
36 |
37 |         public static let `default`: ReadingOptions = [
   |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |             .collapseTextNodes,
39 |             .trimWhiteSpace,
[25/39] Compiling XMLMapper XMLStringConvertibleTransform.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:18:27: warning: static property 'collapseTextNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
16 |         }
17 |
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
   |                           |- warning: static property 'collapseTextNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'collapseTextNodes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:19:27: warning: static property 'stripEmptyNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
17 |
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
   |                           |- warning: static property 'stripEmptyNodes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'stripEmptyNodes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:20:27: warning: static property 'trimWhiteSpace' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
18 |         public static let collapseTextNodes = ReadingOptions(rawValue: 1 << 0)
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
   |                           |- warning: static property 'trimWhiteSpace' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'trimWhiteSpace' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:21:27: warning: static property 'alwaysUseArrays' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
19 |         public static let stripEmptyNodes = ReadingOptions(rawValue: 1 << 1)
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
   |                           |- warning: static property 'alwaysUseArrays' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'alwaysUseArrays' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:22:27: warning: static property 'preserveComments' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
20 |         public static let trimWhiteSpace = ReadingOptions(rawValue: 1 << 2)
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
   |                           |- warning: static property 'preserveComments' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'preserveComments' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:23:27: warning: static property 'wrapRootNode' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
21 |         public static let alwaysUseArrays = ReadingOptions(rawValue: 1 << 3)
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
   |                           |- warning: static property 'wrapRootNode' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'wrapRootNode' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
25 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:24:27: warning: static property 'keepNodesOrder' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
22 |         public static let preserveComments = ReadingOptions(rawValue: 1 << 4)
23 |         public static let wrapRootNode = ReadingOptions(rawValue: 1 << 5)
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
   |                           |- warning: static property 'keepNodesOrder' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'keepNodesOrder' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:26:27: warning: static property 'prefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
24 |         public static let keepNodesOrder = ReadingOptions(rawValue: 1 << 6)
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
   |                           |- warning: static property 'prefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'prefixedAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:27:27: warning: static property 'unprefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
25 |
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
   |                           |- warning: static property 'unprefixedAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'unprefixedAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:28:27: warning: static property 'dictionaryAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
26 |         public static let prefixedAttributes = ReadingOptions(rawValue: 1 << 7)
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
   |                           |- warning: static property 'dictionaryAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'dictionaryAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
30 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:29:27: warning: static property 'discardAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
27 |         public static let unprefixedAttributes = ReadingOptions(rawValue: 1 << 8)
28 |         public static let dictionaryAttributes = ReadingOptions(rawValue: 1 << 9)
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
   |                           |- warning: static property 'discardAttributes' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'discardAttributes' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:31:27: warning: static property 'rootOnlyNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
29 |         public static let discardAttributes = ReadingOptions(rawValue: 1 << 10)
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
   |                           |- warning: static property 'rootOnlyNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'rootOnlyNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:32:27: warning: static property 'alwaysNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
30 |
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
   |                           |- warning: static property 'alwaysNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'alwaysNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
34 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:33:27: warning: static property 'neverNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
31 |         public static let rootOnlyNodeName = ReadingOptions(rawValue: 1 << 11)
32 |         public static let alwaysNodeName = ReadingOptions(rawValue: 1 << 12)
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
   |                           |- warning: static property 'neverNodeName' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'neverNodeName' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:35:27: warning: static property 'cdataAsString' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
33 |         public static let neverNodeName = ReadingOptions(rawValue: 1 << 13)
34 |
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
   |                           |- warning: static property 'cdataAsString' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'cdataAsString' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |         public static let `default`: ReadingOptions = [
/host/spi-builder-workspace/XMLMapper/Classes/XMLSerialization+ReadingOptions.swift:37:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension XMLSerialization {
11 |     public struct ReadingOptions: OptionSet {
   |                   `- note: consider making struct 'ReadingOptions' conform to the 'Sendable' protocol
12 |         public let rawValue: Int
13 |
   :
35 |         public static let cdataAsString = ReadingOptions(rawValue: 1 << 14)
36 |
37 |         public static let `default`: ReadingOptions = [
   |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XMLSerialization.ReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |             .collapseTextNodes,
39 |             .trimWhiteSpace,
[26/39] Compiling XMLMapper XMLCDATATransform.swift
[27/39] Compiling XMLMapper XMLCustomDateFormatTransform.swift
[28/39] Compiling XMLMapper XMLDataTransform.swift
[29/39] Compiling XMLMapper XMLDateFormatterTransform.swift
[30/39] Compiling XMLMapper XMLDateTransform.swift
[31/39] Compiling XMLMapper XMLDictionaryTransform.swift
[32/39] Compiling XMLMapper XMLEnumOperators.swift
[33/39] Compiling XMLMapper XMLEnumTransform.swift
[34/39] Compiling XMLMapper XMLHexColorTransform.swift
[35/39] Compiling XMLMapper XMLMap.swift
[36/39] Compiling XMLMapper XMLMappable.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:62:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 60 |         let xmlObjectParser = XMLObjectParser()
 61 |         xmlObjectParser.applyOptions(options)
 62 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 63 |         parser.delegate = xmlObjectParser
 64 |         parser.parse()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:290:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
288 |         print(parseError)
289 |         error = parseError
290 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
291 |     }
292 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:296:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
294 |         print(validationError)
295 |         error = validationError
296 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
297 |     }
298 | }
[37/39] Compiling XMLMapper XMLMapper.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:62:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 60 |         let xmlObjectParser = XMLObjectParser()
 61 |         xmlObjectParser.applyOptions(options)
 62 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 63 |         parser.delegate = xmlObjectParser
 64 |         parser.parse()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:290:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
288 |         print(parseError)
289 |         error = parseError
290 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
291 |     }
292 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:296:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
294 |         print(validationError)
295 |         error = validationError
296 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
297 |     }
298 | }
[38/39] Compiling XMLMapper XMLNSDecimalNumberTransform.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:62:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 60 |         let xmlObjectParser = XMLObjectParser()
 61 |         xmlObjectParser.applyOptions(options)
 62 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 63 |         parser.delegate = xmlObjectParser
 64 |         parser.parse()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:290:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
288 |         print(parseError)
289 |         error = parseError
290 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
291 |     }
292 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:296:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
294 |         print(validationError)
295 |         error = validationError
296 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
297 |     }
298 | }
[39/39] Compiling XMLMapper XMLObjectParser.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:62:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 60 |         let xmlObjectParser = XMLObjectParser()
 61 |         xmlObjectParser.applyOptions(options)
 62 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 63 |         parser.delegate = xmlObjectParser
 64 |         parser.parse()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:290:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
288 |         print(parseError)
289 |         error = parseError
290 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
291 |     }
292 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:296:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
294 |         print(validationError)
295 |         error = validationError
296 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
297 |     }
298 | }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/34] Emitting module XMLMapper
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
[3/38] Compiling XMLMapper Array+cdataString.swift
[4/38] Compiling XMLMapper Dictionary+XMLParser.swift
[5/38] Compiling XMLMapper Dictionary+isEqual.swift
[6/38] Compiling XMLMapper Dictionary+mapValues.swift
[7/38] Compiling XMLMapper FromXML.swift
[8/38] Compiling XMLMapper XMLParserConstant.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:17: error: cannot convert value of type 'NSDictionary' to type 'Dictionary<Key, Value>' in coercion
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                 `- error: cannot convert value of type 'NSDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[9/38] Compiling XMLMapper XMLParserHelper.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:17: error: cannot convert value of type 'NSDictionary' to type 'Dictionary<Key, Value>' in coercion
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                 `- error: cannot convert value of type 'NSDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[10/38] Compiling XMLMapper XMLRepresentable.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:17: error: cannot convert value of type 'NSDictionary' to type 'Dictionary<Key, Value>' in coercion
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                 `- error: cannot convert value of type 'NSDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[11/38] Compiling XMLMapper XMLSerialization+Error.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:17: error: cannot convert value of type 'NSDictionary' to type 'Dictionary<Key, Value>' in coercion
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                 `- error: cannot convert value of type 'NSDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/XMLRepresentable.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 | extension NSDictionary: XMLRepresentable {
27 |     var xmlString: String {
28 |         return (self as Dictionary).xmlString
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[12/38] Compiling XMLMapper XMLMappable.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:62:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 60 |         let xmlObjectParser = XMLObjectParser()
 61 |         xmlObjectParser.applyOptions(options)
 62 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 63 |         parser.delegate = xmlObjectParser
 64 |         parser.parse()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:290:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
288 |         print(parseError)
289 |         error = parseError
290 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
291 |     }
292 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:296:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
294 |         print(validationError)
295 |         error = validationError
296 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
297 |     }
298 | }
[13/38] Compiling XMLMapper XMLMapper.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:62:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 60 |         let xmlObjectParser = XMLObjectParser()
 61 |         xmlObjectParser.applyOptions(options)
 62 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 63 |         parser.delegate = xmlObjectParser
 64 |         parser.parse()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:290:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
288 |         print(parseError)
289 |         error = parseError
290 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
291 |     }
292 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:296:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
294 |         print(validationError)
295 |         error = validationError
296 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
297 |     }
298 | }
[14/38] Compiling XMLMapper XMLNSDecimalNumberTransform.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:62:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 60 |         let xmlObjectParser = XMLObjectParser()
 61 |         xmlObjectParser.applyOptions(options)
 62 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 63 |         parser.delegate = xmlObjectParser
 64 |         parser.parse()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:290:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
288 |         print(parseError)
289 |         error = parseError
290 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
291 |     }
292 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:296:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
294 |         print(validationError)
295 |         error = validationError
296 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
297 |     }
298 | }
[15/38] Compiling XMLMapper XMLObjectParser.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:151:28: error: cannot find type 'XMLParserDelegate' in scope
149 | // MARK: - XMLParserDelegate
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
    |                            `- error: cannot find type 'XMLParserDelegate' in scope
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
153 |         endText()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 |
151 | extension XMLObjectParser: XMLParserDelegate {
152 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String : String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
153 |         endText()
154 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:217:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
215 |     }
216 |
217 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
218 |         endText()
219 |         endData()
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:259:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
257 |     }
258 |
259 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
260 |         addText(string)
261 |     }
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:263:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
261 |     }
262 |
263 |     func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
264 |         if cdataAsString {
265 |             guard let string = String(data: CDATABlock, encoding: .utf8) else {
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:274:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
272 |     }
273 |
274 |     func parser(_ parser: XMLParser, foundComment comment: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
275 |         if preserveComments {
276 |             let top = stack?.last
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:287:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
285 |     }
286 |
287 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
288 |         print(parseError)
289 |         error = parseError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:293:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
291 |     }
292 |
293 |     func parser(_ parser: XMLParser, validationErrorOccurred validationError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
294 |         print(validationError)
295 |         error = validationError
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:62:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 60 |         let xmlObjectParser = XMLObjectParser()
 61 |         xmlObjectParser.applyOptions(options)
 62 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 63 |         parser.delegate = xmlObjectParser
 64 |         parser.parse()
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:290:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
288 |         print(parseError)
289 |         error = parseError
290 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
291 |     }
292 |
/host/spi-builder-workspace/XMLMapper/Classes/XMLObjectParser.swift:296:16: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
294 |         print(validationError)
295 |         error = validationError
296 |         parser.abortParsing()
    |                `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
297 |     }
298 | }
[16/38] Compiling XMLMapper XMLSerialization+ReadingOptions.swift
[17/38] Compiling XMLMapper XMLSerialization.swift
[18/38] Compiling XMLMapper XMLStringConvertibleOperators.swift
[19/38] Compiling XMLMapper XMLStringConvertibleTransform.swift
[20/38] Compiling XMLMapper XMLCDATATransform.swift
[21/38] Compiling XMLMapper XMLCustomDateFormatTransform.swift
[22/38] Compiling XMLMapper XMLDataTransform.swift
[23/38] Compiling XMLMapper XMLDateFormatterTransform.swift
[24/38] Compiling XMLMapper XMLDateTransform.swift
[25/38] Compiling XMLMapper NSMutableDictionary+XMLParser.swift
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[26/38] Compiling XMLMapper Operators.swift
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[27/38] Compiling XMLMapper Sequence+compactMap.swift
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[28/38] Compiling XMLMapper String+XMLParser.swift
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[29/38] Compiling XMLMapper ToXML.swift
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:12:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
10 | extension NSMutableDictionary {
11 |     var attributes: [String: String]? {
12 |         return (self as Dictionary).attributes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
13 |     }
14 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:16:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
14 |
15 |     var childNodes: [String: Any]? {
16 |         return (self as Dictionary).childNodes
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
17 |     }
18 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:20:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
18 |
19 |     var comments: [String]? {
20 |         return (self as Dictionary).comments
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
21 |     }
22 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:24:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
22 |
23 |     var innerText: String? {
24 |         return (self as Dictionary).innerText
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
25 |     }
26 |
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:17: error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                 `- error: cannot convert value of type 'NSMutableDictionary' to type 'Dictionary<Key, Value>' in coercion
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         `- error: generic parameter 'Key' could not be inferred in cast to 'Dictionary'
29 |     }
30 | }
/host/spi-builder-workspace/XMLMapper/Classes/NSMutableDictionary+XMLParser.swift:28:25: error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
26 |
27 |     var innerCDATA: [Data]? {
28 |         return (self as Dictionary).innerCDATA
   |                         |- error: generic parameter 'Value' could not be inferred in cast to 'Dictionary'
   |                         `- note: explicitly specify the generic arguments to fix this issue
29 |     }
30 | }
[30/38] Compiling XMLMapper XMLDictionaryTransform.swift
[31/38] Compiling XMLMapper XMLEnumOperators.swift
[32/38] Compiling XMLMapper XMLEnumTransform.swift
[33/38] Compiling XMLMapper XMLHexColorTransform.swift
[34/38] Compiling XMLMapper XMLMap.swift
[35/38] Compiling XMLMapper XMLTransformOf.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:318:52: warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
316 |
317 |     if let dictionary = map.currentValue as? [String : [Any]], map.mappingType == .fromXML && map.isKeyPresent {
318 |         let transformedDictionary = dictionary.map { (arg: (key: String, values: [Any])) -> (String, [Transform.Object]) in
    |                                                    `- warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
319 |             let (key, values) = arg
320 |             if let XMLArray = fromXMLArrayWithTransform(values, transform: transform) {
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:354:52: warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
352 |     if let dictionary = map.currentValue as? [String : [Any]], map.mappingType == .fromXML && map.isKeyPresent {
353 |
354 |         let transformedDictionary = dictionary.map { (arg: (key: String, values: [Any])) -> (String, [Transform.Object]) in
    |                                                    `- warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
355 |             let (key, values) = arg
356 |             if let XMLArray = fromXMLArrayWithTransform(values, transform: transform) {
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:375:47: warning: tuple conversion from '(key: String, value: [Transform.Object])' to '(key: String, values: [Transform.Object])' mismatches labels
373 |
374 |     if map.mappingType == .toXML {
375 |         let transformedDictionary = left?.map { (arg: (key: String, values: [Transform.Object])) in
    |                                               `- warning: tuple conversion from '(key: String, value: [Transform.Object])' to '(key: String, values: [Transform.Object])' mismatches labels
376 |             return (arg.key, toXMLArrayWithTransform(arg.values, transform: transform) ?? [])
377 |         }
[36/38] Compiling XMLMapper XMLTransformOperators.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:318:52: warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
316 |
317 |     if let dictionary = map.currentValue as? [String : [Any]], map.mappingType == .fromXML && map.isKeyPresent {
318 |         let transformedDictionary = dictionary.map { (arg: (key: String, values: [Any])) -> (String, [Transform.Object]) in
    |                                                    `- warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
319 |             let (key, values) = arg
320 |             if let XMLArray = fromXMLArrayWithTransform(values, transform: transform) {
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:354:52: warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
352 |     if let dictionary = map.currentValue as? [String : [Any]], map.mappingType == .fromXML && map.isKeyPresent {
353 |
354 |         let transformedDictionary = dictionary.map { (arg: (key: String, values: [Any])) -> (String, [Transform.Object]) in
    |                                                    `- warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
355 |             let (key, values) = arg
356 |             if let XMLArray = fromXMLArrayWithTransform(values, transform: transform) {
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:375:47: warning: tuple conversion from '(key: String, value: [Transform.Object])' to '(key: String, values: [Transform.Object])' mismatches labels
373 |
374 |     if map.mappingType == .toXML {
375 |         let transformedDictionary = left?.map { (arg: (key: String, values: [Transform.Object])) in
    |                                               `- warning: tuple conversion from '(key: String, value: [Transform.Object])' to '(key: String, values: [Transform.Object])' mismatches labels
376 |             return (arg.key, toXMLArrayWithTransform(arg.values, transform: transform) ?? [])
377 |         }
[37/38] Compiling XMLMapper XMLTransformType.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:318:52: warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
316 |
317 |     if let dictionary = map.currentValue as? [String : [Any]], map.mappingType == .fromXML && map.isKeyPresent {
318 |         let transformedDictionary = dictionary.map { (arg: (key: String, values: [Any])) -> (String, [Transform.Object]) in
    |                                                    `- warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
319 |             let (key, values) = arg
320 |             if let XMLArray = fromXMLArrayWithTransform(values, transform: transform) {
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:354:52: warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
352 |     if let dictionary = map.currentValue as? [String : [Any]], map.mappingType == .fromXML && map.isKeyPresent {
353 |
354 |         let transformedDictionary = dictionary.map { (arg: (key: String, values: [Any])) -> (String, [Transform.Object]) in
    |                                                    `- warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
355 |             let (key, values) = arg
356 |             if let XMLArray = fromXMLArrayWithTransform(values, transform: transform) {
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:375:47: warning: tuple conversion from '(key: String, value: [Transform.Object])' to '(key: String, values: [Transform.Object])' mismatches labels
373 |
374 |     if map.mappingType == .toXML {
375 |         let transformedDictionary = left?.map { (arg: (key: String, values: [Transform.Object])) in
    |                                               `- warning: tuple conversion from '(key: String, value: [Transform.Object])' to '(key: String, values: [Transform.Object])' mismatches labels
376 |             return (arg.key, toXMLArrayWithTransform(arg.values, transform: transform) ?? [])
377 |         }
[38/38] Compiling XMLMapper XMLURLTransform.swift
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:318:52: warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
316 |
317 |     if let dictionary = map.currentValue as? [String : [Any]], map.mappingType == .fromXML && map.isKeyPresent {
318 |         let transformedDictionary = dictionary.map { (arg: (key: String, values: [Any])) -> (String, [Transform.Object]) in
    |                                                    `- warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
319 |             let (key, values) = arg
320 |             if let XMLArray = fromXMLArrayWithTransform(values, transform: transform) {
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:354:52: warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
352 |     if let dictionary = map.currentValue as? [String : [Any]], map.mappingType == .fromXML && map.isKeyPresent {
353 |
354 |         let transformedDictionary = dictionary.map { (arg: (key: String, values: [Any])) -> (String, [Transform.Object]) in
    |                                                    `- warning: tuple conversion from '(key: String, value: [Any])' to '(key: String, values: [Any])' mismatches labels
355 |             let (key, values) = arg
356 |             if let XMLArray = fromXMLArrayWithTransform(values, transform: transform) {
/host/spi-builder-workspace/XMLMapper/Classes/XMLTransformOperators.swift:375:47: warning: tuple conversion from '(key: String, value: [Transform.Object])' to '(key: String, values: [Transform.Object])' mismatches labels
373 |
374 |     if map.mappingType == .toXML {
375 |         let transformedDictionary = left?.map { (arg: (key: String, values: [Transform.Object])) in
    |                                               `- warning: tuple conversion from '(key: String, value: [Transform.Object])' to '(key: String, values: [Transform.Object])' mismatches labels
376 |             return (arg.key, toXMLArrayWithTransform(arg.values, transform: transform) ?? [])
377 |         }
BUILD FAILURE 6.1 linux