This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Parsel with Swift 6.0 for tvOS using Xcode 16.0.

Swift 6 data race errors: 33

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Parsel -destination generic/platform=tvos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    |                       |- note: annotate 'char' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |         guard let first = input.first else {
 37 |             return .fail(Error.unexpectedToken(expected: "char", got: String(input.prefix(1))))
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: warning: static property 'asciiChar' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
 67 |
 68 |     /// Parses one char that is part of the ascii table
 69 |     public static let asciiChar = char.filter { parsed in
    |                       |- warning: static property 'asciiChar' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'asciiChar' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |         guard parsed.unicodeScalars.first(where: { !$0.isASCII }) == nil else {
 71 |             return Error.unexpectedToken(expected: "ascii", got: String(parsed))
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: warning: static property 'asciiString' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
 75 |
 76 |     /// Parses a string that consists only of characters from the ascii range
 77 |     public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
    |                       |- warning: static property 'asciiString' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'asciiString' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |
 79 |     /// Parses a lowercase letter ('a'-'z')
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: warning: static property 'lowercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
 78 |
 79 |     /// Parses a lowercase letter ('a'-'z')
 80 |     public static let lowercaseLetter = char.filter { parsed in
    |                       |- warning: static property 'lowercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'lowercaseLetter' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |         guard ("a"..."z").contains(parsed) else {
 82 |             return Error.unexpectedToken(expected: "lowercase", got: String(parsed))
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: warning: static property 'uppercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |     /// Parses an uppercase letter ('A'-'Z')
 88 |     public static let uppercaseLetter = char.filter { parsed in
    |                       |- warning: static property 'uppercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uppercaseLetter' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |         guard ("A"..."Z").contains(parsed) else {
 90 |             return Error.unexpectedToken(expected: "uppercase", got: String(parsed))
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: warning: static property 'letter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
 94 |
 95 |     /// Parses a letter ('a'-'z' | 'A'-'Z')
 96 |     public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
    |                       |- warning: static property 'letter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'letter' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |         guard let lexicalErr = err as? Error else { return err }
 98 |         guard case let .unexpectedToken(_, got) = lexicalErr else {
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: warning: static property 'digit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
126 |
127 |     /// Parses a digit [0-9] from a given String
128 |     public static let digit = Parser<String, Int> { input in
    |                       |- warning: static property 'digit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'digit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |         guard let first = input.first, let number = Int(String(first)) else {
130 |             return .fail(Error.unexpectedToken(expected: "digit", got: String(input.prefix(1))))
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
134 |
135 |     /// Parses a binary digit (0 or 1)
136 |     public static let binaryDigit = digit.filter { parsed in
    |                       |- warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'binaryDigit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
137 |         guard (0...1).contains(parsed) else {
138 |             return Error.unexpectedToken(expected: "0 or 1", got: "\(parsed)")
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: warning: static property 'binaryNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
142 |
143 |     /// A parser for numbers of the format `0b10110110`
144 |     public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
    |                       |- warning: static property 'binaryNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'binaryNumber' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 |         return buildNumber(digits: digits, base: 2)
146 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
147 |
148 |     /// Parses an octal digit (0 to 7)
149 |     public static let octalDigit = digit.filter { parsed in
    |                       |- warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'octalDigit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |         guard (0...7).contains(parsed) else {
151 |             return Error.unexpectedToken(expected: "0 to 7", got: "\(parsed)")
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: warning: static property 'octalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
155 |
156 |     /// A parser for numbers of the format `0o12372106`
157 |     public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
    |                       |- warning: static property 'octalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'octalNumber' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 |         return buildNumber(digits: digits, base: 8)
159 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
160 |
161 |     /// Parses a hexadecimal digit (0 to 15)
162 |     public static let hexadecimalDigit = char.map { parsed -> Int in
    |                       |- warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hexadecimalDigit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
163 |         let ascii = asciiValue(from: parsed)
164 |         if ("a"..."f").contains(parsed) {
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: warning: static property 'hexadecimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
179 |
180 |     /// A parser for numbers of the format `0xdeadbeaf` or `0xDEADBEAF`
181 |     public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
    |                       |- warning: static property 'hexadecimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hexadecimalNumber' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
182 |         return buildNumber(digits: digits, base: 16)
183 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: warning: static property 'decimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
184 |
185 |     /// Parses a decimal number
186 |     public static let decimalNumber = digit.atLeastOne ^^ { digits in
    |                       |- warning: static property 'decimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'decimalNumber' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 |         return buildNumber(digits: digits, base: 10)
188 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: warning: static property 'unsignedNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
189 |
190 |     /// Parses an unsigned (positive) number in hexadecimal, octal, binary or decimal format
191 |     public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
    |                       |- warning: static property 'unsignedNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'unsignedNumber' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
192 |
193 |     /// Parses a number in hexadecimal, octal, binary or decimal format
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
192 |
193 |     /// Parses a number in hexadecimal, octal, binary or decimal format
194 |     public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
    |                       |- warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'number' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
195 |
196 |     /// Parses a floating number from String to Double (0.123; 0,123; …)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: warning: static property 'minus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
206 |
207 |     /// Parses the `-` sign
208 |     public static let minus = char("-")
    |                       |- warning: static property 'minus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'minus' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
209 |
210 |     /// Parses the `*` sign
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: warning: static property 'floatingNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Double>' may have shared mutable state; this is an error in the Swift 6 language mode
195 |
196 |     /// Parses a floating number from String to Double (0.123; 0,123; …)
197 |     public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
    |                       |- warning: static property 'floatingNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Double>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'floatingNumber' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |             let cleaned = input.replacingOccurrences(of: ",", with: ".")
199 |             return Double(cleaned) ?? 0.0
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: warning: static property 'plus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
203 |
204 |     /// Parses the `+` sign
205 |     public static let plus = char("+")
    |                       |- warning: static property 'plus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'plus' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |
207 |     /// Parses the `-` sign
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: warning: static property 'multiply' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
209 |
210 |     /// Parses the `*` sign
211 |     public static let multiply = char("*")
    |                       |- warning: static property 'multiply' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'multiply' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |
213 |     /// Parses the `/` sign
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: warning: static property 'divide' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |     /// Parses the `/` sign
214 |     public static let divide = char("/")
    |                       |- warning: static property 'divide' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'divide' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 |     /// Parses the `=` sign
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: warning: static property 'assign' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
215 |
216 |     /// Parses the `=` sign
217 |     public static let assign = char("=")
    |                       |- warning: static property 'assign' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'assign' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
218 |
219 |     /// Parses the `==` sign
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: warning: static property 'equal' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
218 |
219 |     /// Parses the `==` sign
220 |     public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
    |                       |- warning: static property 'equal' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'equal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 |
222 |     // MARK: - Whitespaces
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 |     /// Parses one space character
225 |     public static let space = char(" ")
    |                       |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'space' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |     /// Parses a new line `\n` character
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
226 |
227 |     /// Parses a new line `\n` character
228 |     public static let newLine = char("\n")
    |                       |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'newLine' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
229 |
230 |     /// Parses a new line `\n` character
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: warning: static property 'carriageReturn' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
229 |
230 |     /// Parses a new line `\n` character
231 |     public static let carriageReturn = char("\r\n")
    |                       |- warning: static property 'carriageReturn' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'carriageReturn' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |
233 |     /// Parses a tab `\t` character
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: warning: static property 'tab' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
232 |
233 |     /// Parses a tab `\t` character
234 |     public static let tab = char("\t")
    |                       |- warning: static property 'tab' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'tab' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |
236 |     /// Parses exactly one whitespace
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: warning: static property 'oneWhitespace' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
235 |
236 |     /// Parses exactly one whitespace
237 |     public static let oneWhitespace = space | newLine | carriageReturn | tab
    |                       |- warning: static property 'oneWhitespace' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneWhitespace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
238 |
239 |     /// Parses at least one whitespace
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: warning: static property 'whitespaces' is not concurrency-safe because non-'Sendable' type 'Parser<String, [Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
238 |
239 |     /// Parses at least one whitespace
240 |     public static let whitespaces = oneWhitespace.atLeastOne
    |                       |- warning: static property 'whitespaces' is not concurrency-safe because non-'Sendable' type 'Parser<String, [Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'whitespaces' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
241 |
242 |     // MARK: - Helpers
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
  7 |
  8 | /// A Parser parses sequences of T (Token) to one or multiple R (Result)
  9 | open class Parser<T, R> where T: Sequence {
    |            `- note: generic class 'Parser' does not conform to the 'Sendable' protocol
 10 |
 11 |     /// ParseFunction is the type of the wrapped function type
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:58:23: warning: static property 'mail' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | /// A parser that parses Strings with a given regular expression
15 | public final class RegexParser: Parser<String, String> {
   |                    `- note: class 'RegexParser' does not conform to the 'Sendable' protocol
16 |
17 |     /// Possible errors while using RegexParser
   :
56 |
57 |     /// Parses an e-mail-address
58 |     public static let mail = """
   |                       |- warning: static property 'mail' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mail' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 | ([a-z0-9_\\.-]+)@([\\da-z\\.-]+)\\.([a-z\\.]{2,6})
60 | """.r
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:64:23: warning: static property 'httpAddress' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | /// A parser that parses Strings with a given regular expression
15 | public final class RegexParser: Parser<String, String> {
   |                    `- note: class 'RegexParser' does not conform to the 'Sendable' protocol
16 |
17 |     /// Possible errors while using RegexParser
   :
62 |     // swiftlint:disable line_length
63 |     /// Parses an http(s) address
64 |     public static let httpAddress = """
   |                       |- warning: static property 'httpAddress' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'httpAddress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | ^(?i)(?:(?:https?|ftp):\\/\\/)?(?:\\S+(?::\\S*)?@)?(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))(?::\\d{2,5})?(?:\\/[^\\s]*)?$
66 | """.r
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:69:23: warning: static property 'ipAddress' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | /// A parser that parses Strings with a given regular expression
15 | public final class RegexParser: Parser<String, String> {
   |                    `- note: class 'RegexParser' does not conform to the 'Sendable' protocol
16 |
17 |     /// Possible errors while using RegexParser
   :
67 |
68 |     /// Parses an IP address
69 |     public static let ipAddress = """
   |                       |- warning: static property 'ipAddress' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'ipAddress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | (?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)
71 | """.r
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:74:23: warning: static property 'semver' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | /// A parser that parses Strings with a given regular expression
15 | public final class RegexParser: Parser<String, String> {
   |                    `- note: class 'RegexParser' does not conform to the 'Sendable' protocol
16 |
17 |     /// Possible errors while using RegexParser
   :
72 |
73 |     /// Parses a semantic version number (1.0.0, 1.0, …) thanks to https://git.daplie.com/coolaj86/semver-utils
74 |     public static let semver = """
   |                       |- warning: static property 'semver' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'semver' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | v?((\\d+)\\.(\\d+)\\.(\\d+))(?:-([\\dA-Za-z\\-]+(?:\\.[\\dA-Za-z\\-]+)*))?(?:\\+([\\dA-Za-z\\-]+(?:\\.[\\dA-Za-z\\-]+)*))?
76 | """.r
SwiftCompile normal arm64 Compiling\ Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators+Sequential.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Operators.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Errors.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Lexical.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:35:23: warning: static property 'char' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let char = Parser<String, Character> { input in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:35:23: note: annotate 'char' with '@MainActor' if property should only be accessed from the main actor
    public static let char = Parser<String, Character> { input in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let char = Parser<String, Character> { input in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: warning: static property 'asciiChar' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let asciiChar = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: note: annotate 'asciiChar' with '@MainActor' if property should only be accessed from the main actor
    public static let asciiChar = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let asciiChar = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: warning: static property 'asciiString' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: note: annotate 'asciiString' with '@MainActor' if property should only be accessed from the main actor
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: warning: static property 'lowercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lowercaseLetter = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: note: annotate 'lowercaseLetter' with '@MainActor' if property should only be accessed from the main actor
    public static let lowercaseLetter = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lowercaseLetter = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: warning: static property 'uppercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let uppercaseLetter = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: note: annotate 'uppercaseLetter' with '@MainActor' if property should only be accessed from the main actor
    public static let uppercaseLetter = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let uppercaseLetter = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: warning: static property 'letter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: note: annotate 'letter' with '@MainActor' if property should only be accessed from the main actor
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: warning: static property 'digit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit = Parser<String, Int> { input in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: note: annotate 'digit' with '@MainActor' if property should only be accessed from the main actor
    public static let digit = Parser<String, Int> { input in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit = Parser<String, Int> { input in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryDigit = digit.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: note: annotate 'binaryDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let binaryDigit = digit.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryDigit = digit.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: warning: static property 'binaryNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: note: annotate 'binaryNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let octalDigit = digit.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: note: annotate 'octalDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let octalDigit = digit.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let octalDigit = digit.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: warning: static property 'octalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: note: annotate 'octalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: note: annotate 'hexadecimalDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: warning: static property 'hexadecimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: note: annotate 'hexadecimalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: warning: static property 'decimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: note: annotate 'decimalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: warning: static property 'unsignedNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: note: annotate 'unsignedNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: note: annotate 'number' with '@MainActor' if property should only be accessed from the main actor
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: warning: static property 'minus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let minus = char("-")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: note: annotate 'minus' with '@MainActor' if property should only be accessed from the main actor
    public static let minus = char("-")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let minus = char("-")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: warning: static property 'floatingNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Double>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: note: annotate 'floatingNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: warning: static property 'plus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let plus = char("+")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: note: annotate 'plus' with '@MainActor' if property should only be accessed from the main actor
    public static let plus = char("+")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let plus = char("+")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: warning: static property 'multiply' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let multiply = char("*")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: note: annotate 'multiply' with '@MainActor' if property should only be accessed from the main actor
    public static let multiply = char("*")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let multiply = char("*")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: warning: static property 'divide' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let divide = char("/")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: note: annotate 'divide' with '@MainActor' if property should only be accessed from the main actor
    public static let divide = char("/")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let divide = char("/")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: warning: static property 'assign' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let assign = char("=")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: note: annotate 'assign' with '@MainActor' if property should only be accessed from the main actor
    public static let assign = char("=")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let assign = char("=")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: warning: static property 'equal' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: note: annotate 'equal' with '@MainActor' if property should only be accessed from the main actor
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let space = char(" ")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: note: annotate 'space' with '@MainActor' if property should only be accessed from the main actor
    public static let space = char(" ")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let space = char(" ")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let newLine = char("\n")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: note: annotate 'newLine' with '@MainActor' if property should only be accessed from the main actor
    public static let newLine = char("\n")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let newLine = char("\n")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: warning: static property 'carriageReturn' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let carriageReturn = char("\r\n")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: note: annotate 'carriageReturn' with '@MainActor' if property should only be accessed from the main actor
    public static let carriageReturn = char("\r\n")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let carriageReturn = char("\r\n")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: warning: static property 'tab' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tab = char("\t")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: note: annotate 'tab' with '@MainActor' if property should only be accessed from the main actor
    public static let tab = char("\t")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tab = char("\t")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: warning: static property 'oneWhitespace' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: note: annotate 'oneWhitespace' with '@MainActor' if property should only be accessed from the main actor
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: warning: static property 'whitespaces' is not concurrency-safe because non-'Sendable' type 'Parser<String, [Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: note: annotate 'whitespaces' with '@MainActor' if property should only be accessed from the main actor
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ RegexParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/RegexParser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:58:23: warning: static property 'mail' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let mail = """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:15:20: note: class 'RegexParser' does not conform to the 'Sendable' protocol
public final class RegexParser: Parser<String, String> {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:58:23: note: annotate 'mail' with '@MainActor' if property should only be accessed from the main actor
    public static let mail = """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let mail = """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:64:23: warning: static property 'httpAddress' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let httpAddress = """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:15:20: note: class 'RegexParser' does not conform to the 'Sendable' protocol
public final class RegexParser: Parser<String, String> {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:64:23: note: annotate 'httpAddress' with '@MainActor' if property should only be accessed from the main actor
    public static let httpAddress = """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let httpAddress = """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:69:23: warning: static property 'ipAddress' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ipAddress = """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:15:20: note: class 'RegexParser' does not conform to the 'Sendable' protocol
public final class RegexParser: Parser<String, String> {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:69:23: note: annotate 'ipAddress' with '@MainActor' if property should only be accessed from the main actor
    public static let ipAddress = """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ipAddress = """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:74:23: warning: static property 'semver' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let semver = """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:15:20: note: class 'RegexParser' does not conform to the 'Sendable' protocol
public final class RegexParser: Parser<String, String> {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:74:23: note: annotate 'semver' with '@MainActor' if property should only be accessed from the main actor
    public static let semver = """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let semver = """
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.o -index-unit-output-path /Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/ParseResult.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for Parsel (in target 'Parsel' from project 'Parsel')
SwiftDriver\ Compilation\ Requirements Parsel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Parsel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Parsel-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel-Swift.h (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Parsel-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftmodule (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftdoc (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.abi.json (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftsourceinfo (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling ParseResult.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Operators+Sequential.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Errors.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Operators.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Lexical.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling RegexParser.swift (in target 'Parsel' from project 'Parsel')
SwiftDriver\ Compilation Parsel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Parsel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.o normal (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-appletvos/Parsel.build/Objects-normal/arm64/Parsel_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.o (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Parsel.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Parsel' from project 'Parsel')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Parsel",
  "name" : "Parsel",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Parsel",
      "targets" : [
        "Parsel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ParselTests",
      "module_type" : "SwiftTarget",
      "name" : "ParselTests",
      "path" : "Tests/ParselTests",
      "sources" : [
        "Errors_TestCase.swift",
        "Helpers.swift",
        "Lexical_TestCase.swift",
        "Operators+Sequential_TestCase.swift",
        "Operators_TestCase.swift",
        "ParseResult_TestCase.swift",
        "Parsel_TestCase.swift",
        "Parser+Conjunction_TestCase.swift",
        "Parser_TestCase.swift",
        "RegexParser_TestCase.swift"
      ],
      "target_dependencies" : [
        "Parsel"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Parsel",
      "module_type" : "SwiftTarget",
      "name" : "Parsel",
      "path" : "Sources/Parsel",
      "product_memberships" : [
        "Parsel"
      ],
      "sources" : [
        "Core/Errors.swift",
        "Core/Operators+Sequential.swift",
        "Core/Operators.swift",
        "Core/ParseResult.swift",
        "Core/Parser+Conjunction.swift",
        "Core/Parser.swift",
        "Lexical.swift",
        "RegexParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.