Build Information
Failed to build Antlr4, reference dev (09d527
), with Swift 6.1 for Wasm on 29 May 2025 14:40:00 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[126/162] Compiling Antlr4 ANTLRError.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[127/162] Compiling Antlr4 ANTLRException.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[128/162] Compiling Antlr4 ArrayExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[129/162] Compiling Antlr4 CharacterExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[130/162] Compiling Antlr4 IntStreamExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[131/162] Compiling Antlr4 StringExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[132/162] Compiling Antlr4 TokenExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[133/162] Compiling Antlr4 UUIDExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[134/162] Compiling Antlr4 CommonUtil.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[135/162] Compiling Antlr4 Mutex.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[136/162] Compiling Antlr4 Stack.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[137/162] Compiling Antlr4 AbstractParseTreeVisitor.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[138/162] Compiling Antlr4 ErrorNode.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/Interval.swift:13:22: warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
10 | ///
11 |
12 | public struct Interval: Hashable {
| `- note: consider making struct 'Interval' conform to the 'Sendable' protocol
13 | public static let INVALID: Interval = Interval(-1, -2)
| |- warning: static property 'INVALID' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'INVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var a: Int
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:22:23: warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
| |- warning: static property 'COMPLETE_CHAR_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPLETE_CHAR_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | {
24 | let set = IntervalSet.of(Lexer.MIN_CHAR_VALUE, Lexer.MAX_CHAR_VALUE)
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/IntervalSet.swift:29:23: warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
19 | ///
20 |
21 | public class IntervalSet: IntSet, Hashable, CustomStringConvertible {
| `- note: class 'IntervalSet' does not conform to the 'Sendable' protocol
22 | public static let COMPLETE_CHAR_SET: IntervalSet =
23 | {
:
27 | }()
28 |
29 | public static let EMPTY_SET: IntervalSet = {
| |- warning: static property 'EMPTY_SET' is not concurrency-safe because non-'Sendable' type 'IntervalSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'EMPTY_SET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | let set = IntervalSet()
31 | set.makeReadonly()
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:18:10: warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
16 |
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
| `- warning: associated value 'parseCancellation(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
19 | case recognition(e: RecognitionException)
20 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/exception/ANTLRException.swift:19:10: warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
17 | public enum ANTLRException: Error {
18 | case parseCancellation(e: RecognitionException)
19 | case recognition(e: RecognitionException)
| `- warning: associated value 'recognition(e:)' of 'Sendable'-conforming enum 'ANTLRException' has non-sendable type 'RecognitionException'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/RecognitionException.swift:14:14: note: class 'RecognitionException' does not conform to the 'Sendable' protocol
12 | ///
13 |
14 | public class RecognitionException {
| `- note: class 'RecognitionException' does not conform to the 'Sendable' protocol
15 | ///
16 | /// The _org.antlr.v4.runtime.Recognizer_ where this exception originated.
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[139/162] Compiling Antlr4 DecisionInfo.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[140/162] Compiling Antlr4 DecisionState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[141/162] Compiling Antlr4 DefaultATNConfig.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[142/162] Compiling Antlr4 EmptyPredictionContext.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[143/162] Compiling Antlr4 EpsilonTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[144/162] Compiling Antlr4 ErrorInfo.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[145/162] Compiling Antlr4 LL1Analyzer.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[146/162] Compiling Antlr4 LexerATNConfig.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[147/162] Compiling Antlr4 LexerATNSimulator.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[148/162] Compiling Antlr4 LexerAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[149/162] Compiling Antlr4 LexerActionExecutor.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[150/162] Compiling Antlr4 LexerActionType.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[151/162] Compiling Antlr4 LexerChannelAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[152/162] Compiling Antlr4 LexerCustomAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[153/162] Compiling Antlr4 LexerIndexedCustomAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[154/162] Compiling Antlr4 LexerModeAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[155/162] Compiling Antlr4 LexerMoreAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[156/162] Compiling Antlr4 LexerPopModeAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
[157/162] Compiling Antlr4 LexerPushModeAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EmptyPredictionContext.swift:13:23: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 |
8 | public class EmptyPredictionContext: SingletonPredictionContext {
| `- note: class 'EmptyPredictionContext' does not conform to the 'Sendable' protocol
9 | ///
10 | /// Represents `$` in local context prediction, which means wildcard.
11 | /// `+x = *`.
12 | ///
13 | public static let Instance = EmptyPredictionContext()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'EmptyPredictionContext' 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
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
/host/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 | ///
/host/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 | ///
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
warning: 'spi-builder-workspace': Invalid Exclude '/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/VisitorBasic.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/LexerA.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/Threading.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/LexerB.g4': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/runtime/Swift/Tests/VisitorCalc.g4': File not found.
warning: 'spi-builder-workspace': found 5 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/VisitorCalc.g4
/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/VisitorBasic.g4
/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/LexerB.g4
/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/LexerA.g4
/host/spi-builder-workspace/runtime/Swift/Tests/Antlr4Tests/Threading.g4
[0/1] Planning build
Building for debugging...
[0/6] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/142] Emitting module Antlr4
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[3/161] Compiling Antlr4 InterpreterDataReader.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[4/161] Compiling Antlr4 Interval.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[5/161] Compiling Antlr4 IntervalSet.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[6/161] Compiling Antlr4 MultiMap.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[7/161] Compiling Antlr4 MurmurHash.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[8/161] Compiling Antlr4 Utils.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[9/161] Compiling Antlr4 ANTLRError.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[10/161] Compiling Antlr4 ANTLRException.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[11/161] Compiling Antlr4 ArrayExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[12/161] Compiling Antlr4 CharacterExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[13/161] Compiling Antlr4 IntStreamExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[14/161] Compiling Antlr4 StringExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[15/161] Compiling Antlr4 TokenExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[16/161] Compiling Antlr4 UUIDExtension.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[17/161] Compiling Antlr4 CommonUtil.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[18/161] Compiling Antlr4 Mutex.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[19/161] Compiling Antlr4 Stack.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[20/161] Compiling Antlr4 AbstractParseTreeVisitor.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[21/161] Compiling Antlr4 ErrorNode.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[22/161] Compiling Antlr4 DecisionInfo.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[23/161] Compiling Antlr4 DecisionState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[24/161] Compiling Antlr4 DefaultATNConfig.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[25/161] Compiling Antlr4 EmptyPredictionContext.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[26/161] Compiling Antlr4 EpsilonTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[27/161] Compiling Antlr4 ErrorInfo.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[28/161] Compiling Antlr4 LL1Analyzer.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[29/161] Compiling Antlr4 LexerATNConfig.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[30/161] Compiling Antlr4 LexerATNSimulator.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[31/161] Compiling Antlr4 LexerAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[32/161] Compiling Antlr4 LexerActionExecutor.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[33/161] Compiling Antlr4 LexerActionType.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[34/161] Compiling Antlr4 LexerChannelAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[35/161] Compiling Antlr4 LexerCustomAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[36/161] Compiling Antlr4 LexerIndexedCustomAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[37/161] Compiling Antlr4 LexerModeAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[38/161] Compiling Antlr4 LexerMoreAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[39/161] Compiling Antlr4 LexerPopModeAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[40/161] Compiling Antlr4 LexerPushModeAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/EpsilonTransition.swift:12:33: warning: function call causes an infinite recursion
10 | private let outermostPrecedenceReturnInside: Int
11 |
12 | public convenience override init(_ target: ATNState) {
| `- warning: function call causes an infinite recursion
13 | self.init(target, -1)
14 | }
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[41/161] Compiling Antlr4 LexerNoViableAltException.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[42/161] Compiling Antlr4 ListTokenSource.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[43/161] Compiling Antlr4 NoViableAltException.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[44/161] Compiling Antlr4 Parser.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[45/161] Compiling Antlr4 ParserInterpreter.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[46/161] Compiling Antlr4 ParserRuleContext.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[47/161] Compiling Antlr4 ProxyErrorListener.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[48/161] Compiling Antlr4 RecognitionException.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[49/161] Compiling Antlr4 Recognizer.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[50/161] Compiling Antlr4 RuleContext.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[51/161] Compiling Antlr4 RuntimeMetaData.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[52/161] Compiling Antlr4 Token.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[53/161] Compiling Antlr4 TokenFactory.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[54/161] Compiling Antlr4 TokenSource.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[55/161] Compiling Antlr4 TokenStream.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[56/161] Compiling Antlr4 TokenStreamRewriter.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[57/161] Compiling Antlr4 UnbufferedCharStream.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[58/161] Compiling Antlr4 UnbufferedTokenStream.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[59/161] Compiling Antlr4 VocabularySingle.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[60/161] Compiling Antlr4 WritableToken.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[61/161] Compiling Antlr4 ATN.swift
[62/161] Compiling Antlr4 ATNConfig.swift
[63/161] Compiling Antlr4 ATNConfigSet.swift
[64/161] Compiling Antlr4 ATNDeserializationOptions.swift
[65/161] Compiling Antlr4 ATNDeserializer.swift
[66/161] Compiling Antlr4 ATNSimulator.swift
[67/161] Compiling Antlr4 ATNState.swift
[68/161] Compiling Antlr4 ATNType.swift
[69/161] Compiling Antlr4 AbstractPredicateTransition.swift
[70/161] Compiling Antlr4 ActionTransition.swift
[71/161] Compiling Antlr4 AmbiguityInfo.swift
[72/161] Compiling Antlr4 ArrayPredictionContext.swift
[73/161] Compiling Antlr4 AtomTransition.swift
[74/161] Compiling Antlr4 BasicBlockStartState.swift
[75/161] Compiling Antlr4 BasicState.swift
[76/161] Compiling Antlr4 BlockEndState.swift
[77/161] Compiling Antlr4 BlockStartState.swift
[78/161] Compiling Antlr4 ContextSensitivityInfo.swift
[79/161] Compiling Antlr4 DecisionEventInfo.swift
[80/161] Compiling Antlr4 ParseTree.swift
[81/161] Compiling Antlr4 ParseTreeListener.swift
[82/161] Compiling Antlr4 ParseTreeProperty.swift
[83/161] Compiling Antlr4 ParseTreeVisitor.swift
[84/161] Compiling Antlr4 ParseTreeWalker.swift
[85/161] Compiling Antlr4 RuleNode.swift
[86/161] Compiling Antlr4 SyntaxTree.swift
[87/161] Compiling Antlr4 TerminalNode.swift
[88/161] Compiling Antlr4 TerminalNodeImpl.swift
[89/161] Compiling Antlr4 Tree.swift
[90/161] Compiling Antlr4 Trees.swift
[91/161] Compiling Antlr4 Chunk.swift
[92/161] Compiling Antlr4 ParseTreeMatch.swift
[93/161] Compiling Antlr4 ParseTreePattern.swift
[94/161] Compiling Antlr4 ParseTreePatternMatcher.swift
[95/161] Compiling Antlr4 RuleTagToken.swift
[96/161] Compiling Antlr4 TagChunk.swift
[97/161] Compiling Antlr4 TextChunk.swift
[98/161] Compiling Antlr4 TokenTagToken.swift
[99/161] Compiling Antlr4 LexerSkipAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[100/161] Compiling Antlr4 LexerTypeAction.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[101/161] Compiling Antlr4 LookaheadEventInfo.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[102/161] Compiling Antlr4 LookupATNConfig.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[103/161] Compiling Antlr4 LookupDictionary.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[104/161] Compiling Antlr4 LoopEndState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[105/161] Compiling Antlr4 NotSetTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[106/161] Compiling Antlr4 ParseInfo.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[107/161] Compiling Antlr4 ParserATNSimulator.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[108/161] Compiling Antlr4 PlusBlockStartState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[109/161] Compiling Antlr4 PlusLoopbackState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[110/161] Compiling Antlr4 PrecedencePredicateTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[111/161] Compiling Antlr4 PredicateEvalInfo.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[112/161] Compiling Antlr4 PredicateTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[113/161] Compiling Antlr4 PredictionContext.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[114/161] Compiling Antlr4 PredictionContextCache.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[115/161] Compiling Antlr4 PredictionMode.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[116/161] Compiling Antlr4 ProfilingATNSimulator.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[117/161] Compiling Antlr4 RangeTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[118/161] Compiling Antlr4 ANTLRErrorListener.swift
[119/161] Compiling Antlr4 ANTLRErrorStrategy.swift
[120/161] Compiling Antlr4 ANTLRFileStream.swift
[121/161] Compiling Antlr4 ANTLRInputStream.swift
[122/161] Compiling Antlr4 BailErrorStrategy.swift
[123/161] Compiling Antlr4 BaseErrorListener.swift
[124/161] Compiling Antlr4 BufferedTokenStream.swift
[125/161] Compiling Antlr4 CharStream.swift
[126/161] Compiling Antlr4 CommonToken.swift
[127/161] Compiling Antlr4 CommonTokenFactory.swift
[128/161] Compiling Antlr4 CommonTokenStream.swift
[129/161] Compiling Antlr4 ConsoleErrorListener.swift
[130/161] Compiling Antlr4 DefaultErrorStrategy.swift
[131/161] Compiling Antlr4 DiagnosticErrorListener.swift
[132/161] Compiling Antlr4 FailedPredicateException.swift
[133/161] Compiling Antlr4 InputMismatchException.swift
[134/161] Compiling Antlr4 IntStream.swift
[135/161] Compiling Antlr4 InterpreterRuleContext.swift
[136/161] Compiling Antlr4 Lexer.swift
[137/161] Compiling Antlr4 LexerInterpreter.swift
[138/161] Compiling Antlr4 RuleStartState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[139/161] Compiling Antlr4 RuleStopState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[140/161] Compiling Antlr4 RuleTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[141/161] Compiling Antlr4 SemanticContext.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[142/161] Compiling Antlr4 SetTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[143/161] Compiling Antlr4 SingletonPredictionContext.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[144/161] Compiling Antlr4 StarBlockStartState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[145/161] Compiling Antlr4 StarLoopEntryState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[146/161] Compiling Antlr4 StarLoopbackState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[147/161] Compiling Antlr4 TokensStartState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[148/161] Compiling Antlr4 Transition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[149/161] Compiling Antlr4 WildcardTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[150/161] Compiling Antlr4 DFA.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[151/161] Compiling Antlr4 DFASerializer.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[152/161] Compiling Antlr4 DFAState.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[153/161] Compiling Antlr4 LexerDFASerializer.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[154/161] Compiling Antlr4 BitSet.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[155/161] Compiling Antlr4 DoubleKeyMap.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
[156/161] Compiling Antlr4 IntSet.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/misc/utils/Mutex.swift:12:29: error: cannot find 'DispatchSemaphore' in scope
10 | /// The mutex instance.
11 | ///
12 | private let semaphore = DispatchSemaphore(value: 1)
| `- error: cannot find 'DispatchSemaphore' in scope
13 |
14 | ///
BUILD FAILURE 6.1 wasm