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 Antlr4, reference dev (cb8501), with Swift 6.1 for macOS (SPM) on 29 Apr 2025 05:23:20 UTC.

Swift 6 data race errors: 22

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[69/161] Compiling Antlr4 TokenStreamRewriter.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[70/161] Compiling Antlr4 UnbufferedCharStream.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[71/161] Compiling Antlr4 UnbufferedTokenStream.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[72/161] Compiling Antlr4 VocabularySingle.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[73/161] Compiling Antlr4 WritableToken.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[74/161] Compiling Antlr4 ATN.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[75/161] Compiling Antlr4 ATNConfig.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[76/161] Compiling Antlr4 ATNConfigSet.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[77/161] Compiling Antlr4 ATNDeserializationOptions.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[78/161] Compiling Antlr4 ATNDeserializer.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[79/161] Compiling Antlr4 ATNSimulator.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[80/161] Compiling Antlr4 ATNState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[81/161] Compiling Antlr4 ATNType.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:38:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
31 |  to avoid retain cycles.
32 |  */
33 | public class TokenSourceAndStream {
   |              `- note: class 'TokenSourceAndStream' does not conform to the 'Sendable' protocol
34 |     ///
35 |     /// An empty TokenSourceAndStream which is used as the default value of
36 |     /// _#source_ for tokens that do not have a source.
37 |     ///
38 |     public static let EMPTY = TokenSourceAndStream()
   |                       |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'TokenSourceAndStream' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'EMPTY' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     public weak var tokenSource: TokenSource?
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/UnbufferedCharStream.swift:336:9: warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
334 |         }
335 |
336 |         switch stream.streamStatus {
    |         |- warning: switch covers known cases, but 'Stream.Status' may have additional unknown values, possibly added in future versions; this is an error in the Swift 6 language mode
    |         `- note: handle unknown values using "@unknown default"
337 |             case .notOpen, .writing, .closed:
338 |                 preconditionFailure()
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/VocabularySingle.swift:25:23: warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 |
 14 | public class Vocabulary: Hashable {
    |              `- note: class 'Vocabulary' does not conform to the 'Sendable' protocol
 15 |     private static let EMPTY_NAMES: [String?] = [String?](repeating: "", count: 1)
 16 |
    :
 23 |     /// except _org.antlr.v4.runtime.Token#EOF_.
 24 |     ///
 25 |     public static let EMPTY_VOCABULARY: Vocabulary = Vocabulary(EMPTY_NAMES, EMPTY_NAMES, EMPTY_NAMES)
    |                       |- warning: static property 'EMPTY_VOCABULARY' is not concurrency-safe because non-'Sendable' type 'Vocabulary' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'EMPTY_VOCABULARY' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     /// Must distinguish between missing edge and edge we know leads nowhere
13 |     ///
14 |     public static let ERROR: DFAState = {
   |                       |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'ERROR' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         let error = DFAState(ATNConfigSet())
16 |         error.stateNumber = Int.max
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
 32 | ///
 33 |
 34 | public final class DFAState: Hashable, CustomStringConvertible {
    |                    `- note: class 'DFAState' does not conform to the 'Sendable' protocol
 35 |     public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
 36 |
[82/161] Compiling Antlr4 LexerTypeAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[83/161] Compiling Antlr4 LookaheadEventInfo.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[84/161] Compiling Antlr4 LookupATNConfig.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[85/161] Compiling Antlr4 LookupDictionary.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[86/161] Compiling Antlr4 LoopEndState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[87/161] Compiling Antlr4 NotSetTransition.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[88/161] Compiling Antlr4 ParseInfo.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[89/161] Compiling Antlr4 ParserATNSimulator.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[90/161] Compiling Antlr4 PlusBlockStartState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[91/161] Compiling Antlr4 PlusLoopbackState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[92/161] Compiling Antlr4 PrecedencePredicateTransition.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[93/161] Compiling Antlr4 PredicateEvalInfo.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[94/161] Compiling Antlr4 PredicateTransition.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[95/161] Compiling Antlr4 PredictionContext.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[96/161] Compiling Antlr4 PredictionContextCache.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |     private static let INITIAL_HASH = UInt32(1)
 19 |
 20 |     public static var globalNodeCount = 0
    |                       |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'globalNodeCount' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     public final let id: Int = {
[97/161] Compiling Antlr4 ANTLRErrorListener.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[98/161] Compiling Antlr4 ANTLRErrorStrategy.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[99/161] Compiling Antlr4 ANTLRFileStream.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[100/161] Compiling Antlr4 ANTLRInputStream.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[101/161] Compiling Antlr4 BailErrorStrategy.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[102/161] Compiling Antlr4 BaseErrorListener.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[103/161] Compiling Antlr4 BufferedTokenStream.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[104/161] Compiling Antlr4 CharStream.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[105/161] Compiling Antlr4 CommonToken.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[106/161] Compiling Antlr4 CommonTokenFactory.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[107/161] Compiling Antlr4 CommonTokenStream.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[108/161] Compiling Antlr4 ConsoleErrorListener.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[109/161] Compiling Antlr4 DefaultErrorStrategy.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[110/161] Compiling Antlr4 DiagnosticErrorListener.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[111/161] Compiling Antlr4 FailedPredicateException.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[112/161] Compiling Antlr4 InputMismatchException.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/CommonTokenFactory.swift:22:23: warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
20 |     /// tokens.
21 |     ///
22 |     public static let DEFAULT: TokenFactory = CommonTokenFactory()
   |                       |- warning: static property 'DEFAULT' is not concurrency-safe because non-'Sendable' type 'any TokenFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'DEFAULT' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/TokenFactory.swift:11:17: note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
 9 | /// of a new factory means that it notifies it's token source and error strategy.
10 | ///
11 | public protocol TokenFactory {
   |                 `- note: protocol 'TokenFactory' does not conform to the 'Sendable' protocol
12 |
13 |     //typealias Symbol
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
   |              `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 |     ///
15 |     /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 |     ///
17 |     public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     ///
[113/161] Compiling Antlr4 ArrayExtension.swift
[114/161] Compiling Antlr4 CharacterExtension.swift
[115/161] Compiling Antlr4 IntStreamExtension.swift
[116/161] Compiling Antlr4 StringExtension.swift
[117/161] Compiling Antlr4 TokenExtension.swift
[118/161] Compiling Antlr4 UUIDExtension.swift
[119/161] Compiling Antlr4 CommonUtil.swift
[120/161] Compiling Antlr4 Mutex.swift
[121/161] Compiling Antlr4 Stack.swift
[122/161] Compiling Antlr4 AbstractParseTreeVisitor.swift
[123/161] Compiling Antlr4 ErrorNode.swift
[124/161] Compiling Antlr4 ParseTree.swift
[125/161] Compiling Antlr4 ParseTreeListener.swift
[126/161] Compiling Antlr4 ParseTreeProperty.swift
[127/161] Compiling Antlr4 ParseTreeVisitor.swift
[128/161] Compiling Antlr4 PredictionMode.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[129/161] Compiling Antlr4 ProfilingATNSimulator.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[130/161] Compiling Antlr4 RangeTransition.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[131/161] Compiling Antlr4 RuleStartState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[132/161] Compiling Antlr4 RuleStopState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[133/161] Compiling Antlr4 RuleTransition.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[134/161] Compiling Antlr4 SemanticContext.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[135/161] Compiling Antlr4 SetTransition.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[136/161] Compiling Antlr4 SingletonPredictionContext.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[137/161] Compiling Antlr4 StarBlockStartState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[138/161] Compiling Antlr4 StarLoopEntryState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[139/161] Compiling Antlr4 StarLoopbackState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[140/161] Compiling Antlr4 TokensStartState.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[141/161] Compiling Antlr4 Transition.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[142/161] Compiling Antlr4 WildcardTransition.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     }
 65 |
 66 |     public class Empty: SemanticContext {
    |                  `- note: class 'Empty' does not conform to the 'Sendable' protocol
 67 |         //
 68 |         /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
 69 |         /// a predicate of the form `{true?}.
 70 |         ///
 71 |         public static let Instance: Empty = Empty()
    |                           |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'Instance' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         public override func hash(into hasher: inout Hasher) {
[143/161] Compiling Antlr4 ErrorInfo.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[144/161] Compiling Antlr4 LL1Analyzer.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[145/161] Compiling Antlr4 LexerATNConfig.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[146/161] Compiling Antlr4 LexerATNSimulator.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[147/161] Compiling Antlr4 LexerAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[148/161] Compiling Antlr4 LexerActionExecutor.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[149/161] Compiling Antlr4 LexerActionType.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[150/161] Compiling Antlr4 LexerChannelAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[151/161] Compiling Antlr4 LexerCustomAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[152/161] Compiling Antlr4 LexerIndexedCustomAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[153/161] Compiling Antlr4 LexerModeAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[154/161] Compiling Antlr4 LexerMoreAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[155/161] Compiling Antlr4 LexerPopModeAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[156/161] Compiling Antlr4 LexerPushModeAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[157/161] Compiling Antlr4 LexerSkipAction.swift
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerMoreAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerMoreAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerMoreAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerMoreAction = LexerMoreAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerMoreAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerPopModeAction.swift:23:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
17 | ///
18 |
19 | public final class LexerPopModeAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerPopModeAction' does not conform to the 'Sendable' protocol
20 |     ///
21 |     /// Provides a singleton instance of this parameterless lexer action.
22 |     ///
23 |     public static let INSTANCE: LexerPopModeAction = LexerPopModeAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerPopModeAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     ///
/Users/admin/builder/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
   |                    `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 |     ///
20 |     /// Provides a singleton instance of this parameterless lexer action.
21 |     ///
22 |     public static let INSTANCE: LexerSkipAction = LexerSkipAction()
   |                       |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'INSTANCE' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     ///
[157/161] Write Objects.LinkFileList
[159/161] Archiving libAntlr4Static.a
[160/161] Linking libAntlr4Dynamic.dylib
Build complete! (6.40s)
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/LexerA.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/Threading.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/VisitorCalc.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/VisitorBasic.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/LexerB.g4': File not found.
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Antlr4",
  "name" : "Antlr4",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Antlr4",
      "targets" : [
        "Antlr4"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Antlr4Static",
      "targets" : [
        "Antlr4"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "Antlr4Dynamic",
      "targets" : [
        "Antlr4"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Antlr4Tests",
      "module_type" : "SwiftTarget",
      "name" : "Antlr4Tests",
      "path" : "runtime/Swift/Tests/Antlr4Tests",
      "sources" : [
        "ANTLRInputStreamTests.swift",
        "InterpreterDataTests.swift",
        "MurmurHashTests.swift",
        "ParseTreePatternMatcherTests.swift",
        "RuntimeMetaDataTests.swift",
        "StringExtensionTests.swift",
        "ThreadingTests.swift",
        "TokenStreamRewriterTests.swift",
        "TokenStreamTests.swift",
        "VisitorTests.swift"
      ],
      "target_dependencies" : [
        "Antlr4"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Antlr4",
      "module_type" : "SwiftTarget",
      "name" : "Antlr4",
      "path" : "runtime/Swift/Sources/Antlr4",
      "product_memberships" : [
        "Antlr4",
        "Antlr4Static",
        "Antlr4Dynamic"
      ],
      "sources" : [
        "ANTLRErrorListener.swift",
        "ANTLRErrorStrategy.swift",
        "ANTLRFileStream.swift",
        "ANTLRInputStream.swift",
        "BailErrorStrategy.swift",
        "BaseErrorListener.swift",
        "BufferedTokenStream.swift",
        "CharStream.swift",
        "CommonToken.swift",
        "CommonTokenFactory.swift",
        "CommonTokenStream.swift",
        "ConsoleErrorListener.swift",
        "DefaultErrorStrategy.swift",
        "DiagnosticErrorListener.swift",
        "FailedPredicateException.swift",
        "InputMismatchException.swift",
        "IntStream.swift",
        "InterpreterRuleContext.swift",
        "Lexer.swift",
        "LexerInterpreter.swift",
        "LexerNoViableAltException.swift",
        "ListTokenSource.swift",
        "NoViableAltException.swift",
        "Parser.swift",
        "ParserInterpreter.swift",
        "ParserRuleContext.swift",
        "ProxyErrorListener.swift",
        "RecognitionException.swift",
        "Recognizer.swift",
        "RuleContext.swift",
        "RuntimeMetaData.swift",
        "Token.swift",
        "TokenFactory.swift",
        "TokenSource.swift",
        "TokenStream.swift",
        "TokenStreamRewriter.swift",
        "UnbufferedCharStream.swift",
        "UnbufferedTokenStream.swift",
        "VocabularySingle.swift",
        "WritableToken.swift",
        "atn/ATN.swift",
        "atn/ATNConfig.swift",
        "atn/ATNConfigSet.swift",
        "atn/ATNDeserializationOptions.swift",
        "atn/ATNDeserializer.swift",
        "atn/ATNSimulator.swift",
        "atn/ATNState.swift",
        "atn/ATNType.swift",
        "atn/AbstractPredicateTransition.swift",
        "atn/ActionTransition.swift",
        "atn/AmbiguityInfo.swift",
        "atn/ArrayPredictionContext.swift",
        "atn/AtomTransition.swift",
        "atn/BasicBlockStartState.swift",
        "atn/BasicState.swift",
        "atn/BlockEndState.swift",
        "atn/BlockStartState.swift",
        "atn/ContextSensitivityInfo.swift",
        "atn/DecisionEventInfo.swift",
        "atn/DecisionInfo.swift",
        "atn/DecisionState.swift",
        "atn/DefaultATNConfig.swift",
        "atn/EmptyPredictionContext.swift",
        "atn/EpsilonTransition.swift",
        "atn/ErrorInfo.swift",
        "atn/LL1Analyzer.swift",
        "atn/LexerATNConfig.swift",
        "atn/LexerATNSimulator.swift",
        "atn/LexerAction.swift",
        "atn/LexerActionExecutor.swift",
        "atn/LexerActionType.swift",
        "atn/LexerChannelAction.swift",
        "atn/LexerCustomAction.swift",
        "atn/LexerIndexedCustomAction.swift",
        "atn/LexerModeAction.swift",
        "atn/LexerMoreAction.swift",
        "atn/LexerPopModeAction.swift",
        "atn/LexerPushModeAction.swift",
        "atn/LexerSkipAction.swift",
        "atn/LexerTypeAction.swift",
        "atn/LookaheadEventInfo.swift",
        "atn/LookupATNConfig.swift",
        "atn/LookupDictionary.swift",
        "atn/LoopEndState.swift",
        "atn/NotSetTransition.swift",
        "atn/ParseInfo.swift",
        "atn/ParserATNSimulator.swift",
        "atn/PlusBlockStartState.swift",
        "atn/PlusLoopbackState.swift",
        "atn/PrecedencePredicateTransition.swift",
        "atn/PredicateEvalInfo.swift",
        "atn/PredicateTransition.swift",
        "atn/PredictionContext.swift",
        "atn/PredictionContextCache.swift",
        "atn/PredictionMode.swift",
        "atn/ProfilingATNSimulator.swift",
        "atn/RangeTransition.swift",
        "atn/RuleStartState.swift",
        "atn/RuleStopState.swift",
        "atn/RuleTransition.swift",
        "atn/SemanticContext.swift",
        "atn/SetTransition.swift",
        "atn/SingletonPredictionContext.swift",
        "atn/StarBlockStartState.swift",
        "atn/StarLoopEntryState.swift",
        "atn/StarLoopbackState.swift",
        "atn/TokensStartState.swift",
        "atn/Transition.swift",
        "atn/WildcardTransition.swift",
        "dfa/DFA.swift",
        "dfa/DFASerializer.swift",
        "dfa/DFAState.swift",
        "dfa/LexerDFASerializer.swift",
        "misc/BitSet.swift",
        "misc/DoubleKeyMap.swift",
        "misc/IntSet.swift",
        "misc/InterpreterDataReader.swift",
        "misc/Interval.swift",
        "misc/IntervalSet.swift",
        "misc/MultiMap.swift",
        "misc/MurmurHash.swift",
        "misc/Utils.swift",
        "misc/exception/ANTLRError.swift",
        "misc/exception/ANTLRException.swift",
        "misc/extension/ArrayExtension.swift",
        "misc/extension/CharacterExtension.swift",
        "misc/extension/IntStreamExtension.swift",
        "misc/extension/StringExtension.swift",
        "misc/extension/TokenExtension.swift",
        "misc/extension/UUIDExtension.swift",
        "misc/utils/CommonUtil.swift",
        "misc/utils/Mutex.swift",
        "misc/utils/Stack.swift",
        "tree/AbstractParseTreeVisitor.swift",
        "tree/ErrorNode.swift",
        "tree/ParseTree.swift",
        "tree/ParseTreeListener.swift",
        "tree/ParseTreeProperty.swift",
        "tree/ParseTreeVisitor.swift",
        "tree/ParseTreeWalker.swift",
        "tree/RuleNode.swift",
        "tree/SyntaxTree.swift",
        "tree/TerminalNode.swift",
        "tree/TerminalNodeImpl.swift",
        "tree/Tree.swift",
        "tree/Trees.swift",
        "tree/pattern/Chunk.swift",
        "tree/pattern/ParseTreeMatch.swift",
        "tree/pattern/ParseTreePattern.swift",
        "tree/pattern/ParseTreePatternMatcher.swift",
        "tree/pattern/RuleTagToken.swift",
        "tree/pattern/TagChunk.swift",
        "tree/pattern/TextChunk.swift",
        "tree/pattern/TokenTagToken.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/LexerB.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/LexerA.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/VisitorBasic.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/VisitorCalc.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/Threading.g4': File not found.
Done.