Build Information
Successful build of Antlr4, reference 4.13.2 (cc8211
), with Swift 6.0 for Linux on 1 Dec 2024 12:32:51 UTC.
Swift 6 data race errors: 22
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
Build Log
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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | private static let INITIAL_HASH = UInt32(1)
19 |
20 | public static var globalNodeCount = 0
| |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalNodeCount' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public final let id: Int = {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[134/162] Compiling Antlr4 PredictionContext.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
| `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Provides a singleton instance of this parameterless lexer action.
21 | ///
22 | public static let INSTANCE: LexerSkipAction = LexerSkipAction()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | ///
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ParserRuleContext.swift:30:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
27 | /// satisfy the superclass interface.
28 | ///
29 | open class ParserRuleContext: RuleContext {
| `- note: class 'ParserRuleContext' does not conform to the 'Sendable' protocol
30 | public static let EMPTY = ParserRuleContext()
| |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'EMPTY' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | public var visited = false
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | private static let INITIAL_HASH = UInt32(1)
19 |
20 | public static var globalNodeCount = 0
| |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalNodeCount' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public final let id: Int = {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[135/162] Compiling Antlr4 PredictionContextCache.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
| `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Provides a singleton instance of this parameterless lexer action.
21 | ///
22 | public static let INSTANCE: LexerSkipAction = LexerSkipAction()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | ///
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ParserRuleContext.swift:30:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
27 | /// satisfy the superclass interface.
28 | ///
29 | open class ParserRuleContext: RuleContext {
| `- note: class 'ParserRuleContext' does not conform to the 'Sendable' protocol
30 | public static let EMPTY = ParserRuleContext()
| |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'EMPTY' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | public var visited = false
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | private static let INITIAL_HASH = UInt32(1)
19 |
20 | public static var globalNodeCount = 0
| |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalNodeCount' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public final let id: Int = {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[136/162] Compiling Antlr4 PredictionMode.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
| `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Provides a singleton instance of this parameterless lexer action.
21 | ///
22 | public static let INSTANCE: LexerSkipAction = LexerSkipAction()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | ///
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ParserRuleContext.swift:30:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
27 | /// satisfy the superclass interface.
28 | ///
29 | open class ParserRuleContext: RuleContext {
| `- note: class 'ParserRuleContext' does not conform to the 'Sendable' protocol
30 | public static let EMPTY = ParserRuleContext()
| |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'EMPTY' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | public var visited = false
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | private static let INITIAL_HASH = UInt32(1)
19 |
20 | public static var globalNodeCount = 0
| |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalNodeCount' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public final let id: Int = {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[137/162] Compiling Antlr4 ProfilingATNSimulator.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
| `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Provides a singleton instance of this parameterless lexer action.
21 | ///
22 | public static let INSTANCE: LexerSkipAction = LexerSkipAction()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | ///
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ParserRuleContext.swift:30:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
27 | /// satisfy the superclass interface.
28 | ///
29 | open class ParserRuleContext: RuleContext {
| `- note: class 'ParserRuleContext' does not conform to the 'Sendable' protocol
30 | public static let EMPTY = ParserRuleContext()
| |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'EMPTY' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | public var visited = false
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | private static let INITIAL_HASH = UInt32(1)
19 |
20 | public static var globalNodeCount = 0
| |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalNodeCount' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public final let id: Int = {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[138/162] Compiling Antlr4 RangeTransition.swift
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/LexerSkipAction.swift:22:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 |
18 | public final class LexerSkipAction: LexerAction, CustomStringConvertible {
| `- note: class 'LexerSkipAction' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Provides a singleton instance of this parameterless lexer action.
21 | ///
22 | public static let INSTANCE: LexerSkipAction = LexerSkipAction()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'LexerSkipAction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | ///
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ParserRuleContext.swift:30:23: warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
27 | /// satisfy the superclass interface.
28 | ///
29 | open class ParserRuleContext: RuleContext {
| `- note: class 'ParserRuleContext' does not conform to the 'Sendable' protocol
30 | public static let EMPTY = ParserRuleContext()
| |- warning: static property 'EMPTY' is not concurrency-safe because non-'Sendable' type 'ParserRuleContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'EMPTY' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | public var visited = false
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/PredictionContext.swift:20:23: warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | private static let INITIAL_HASH = UInt32(1)
19 |
20 | public static var globalNodeCount = 0
| |- warning: static property 'globalNodeCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalNodeCount' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalNodeCount' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public final let id: Int = {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[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: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public init() {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/SemanticContext.swift:71:27: warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
64 | }
65 |
66 | public class Empty: SemanticContext {
| `- note: class 'Empty' does not conform to the 'Sendable' protocol
67 | //
68 | /// The default _org.antlr.v4.runtime.atn.SemanticContext_, which is semantically equivalent to
69 | /// a predicate of the form `{true?}.
70 | ///
71 | public static let Instance: Empty = Empty()
| |- warning: static property 'Instance' is not concurrency-safe because non-'Sendable' type 'SemanticContext.Empty' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'Instance' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public override func hash(into hasher: inout Hasher) {
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/atn/ATNSimulator.swift:14:23: warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
12 | /// Must distinguish between missing edge and edge we know leads nowhere
13 | ///
14 | public static let ERROR: DFAState = {
| |- warning: static property 'ERROR' is not concurrency-safe because non-'Sendable' type 'DFAState' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'ERROR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | let error = DFAState(ATNConfigSet())
16 | error.stateNumber = Int.max
/host/spi-builder-workspace/runtime/Swift/Sources/Antlr4/dfa/DFAState.swift:34:20: note: class 'DFAState' does not conform to the 'Sendable' protocol
32 | ///
33 |
34 | public final class DFAState: Hashable, CustomStringConvertible {
| `- note: class 'DFAState' does not conform to the 'Sendable' protocol
35 | public internal(set) var stateNumber = ATNState.INVALID_STATE_NUMBER
36 |
/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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | ///
/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/ConsoleErrorListener.swift:17:23: warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 |
13 | public class ConsoleErrorListener: BaseErrorListener {
| `- note: class 'ConsoleErrorListener' does not conform to the 'Sendable' protocol
14 | ///
15 | /// Provides a default instance of _org.antlr.v4.runtime.ConsoleErrorListener_.
16 | ///
17 | public static let INSTANCE: ConsoleErrorListener = ConsoleErrorListener()
| |- warning: static property 'INSTANCE' is not concurrency-safe because non-'Sendable' type 'ConsoleErrorListener' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'INSTANCE' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | ///
[158/163] Wrapping AST for Antlr4 for debugging
[159/163] Write Objects.LinkFileList
[161/163] Archiving libAntlr4Static.a
[162/163] Linking libAntlr4Dynamic.so
Build complete! (23.14s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Antlr4",
"name" : "Antlr4",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Antlr4",
"targets" : [
"Antlr4"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Antlr4Static",
"targets" : [
"Antlr4"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "Antlr4Dynamic",
"targets" : [
"Antlr4"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "Antlr4Tests",
"module_type" : "SwiftTarget",
"name" : "Antlr4Tests",
"path" : "runtime/Swift/Tests/Antlr4Tests",
"sources" : [
"ANTLRInputStreamTests.swift",
"InterpreterDataTests.swift",
"MurmurHashTests.swift",
"ParseTreePatternMatcherTests.swift",
"RuntimeMetaDataTests.swift",
"StringExtensionTests.swift",
"ThreadingTests.swift",
"TokenStreamRewriterTests.swift",
"TokenStreamTests.swift",
"VisitorTests.swift"
],
"target_dependencies" : [
"Antlr4"
],
"type" : "test"
},
{
"c99name" : "Antlr4",
"module_type" : "SwiftTarget",
"name" : "Antlr4",
"path" : "runtime/Swift/Sources/Antlr4",
"product_memberships" : [
"Antlr4",
"Antlr4Static",
"Antlr4Dynamic"
],
"sources" : [
"ANTLRErrorListener.swift",
"ANTLRErrorStrategy.swift",
"ANTLRFileStream.swift",
"ANTLRInputStream.swift",
"BailErrorStrategy.swift",
"BaseErrorListener.swift",
"BufferedTokenStream.swift",
"CharStream.swift",
"CommonToken.swift",
"CommonTokenFactory.swift",
"CommonTokenStream.swift",
"ConsoleErrorListener.swift",
"DefaultErrorStrategy.swift",
"DiagnosticErrorListener.swift",
"FailedPredicateException.swift",
"InputMismatchException.swift",
"IntStream.swift",
"InterpreterRuleContext.swift",
"Lexer.swift",
"LexerInterpreter.swift",
"LexerNoViableAltException.swift",
"ListTokenSource.swift",
"NoViableAltException.swift",
"Parser.swift",
"ParserInterpreter.swift",
"ParserRuleContext.swift",
"ProxyErrorListener.swift",
"RecognitionException.swift",
"Recognizer.swift",
"RuleContext.swift",
"RuntimeMetaData.swift",
"Token.swift",
"TokenFactory.swift",
"TokenSource.swift",
"TokenStream.swift",
"TokenStreamRewriter.swift",
"UnbufferedCharStream.swift",
"UnbufferedTokenStream.swift",
"VocabularySingle.swift",
"WritableToken.swift",
"atn/ATN.swift",
"atn/ATNConfig.swift",
"atn/ATNConfigSet.swift",
"atn/ATNDeserializationOptions.swift",
"atn/ATNDeserializer.swift",
"atn/ATNSimulator.swift",
"atn/ATNState.swift",
"atn/ATNType.swift",
"atn/AbstractPredicateTransition.swift",
"atn/ActionTransition.swift",
"atn/AmbiguityInfo.swift",
"atn/ArrayPredictionContext.swift",
"atn/AtomTransition.swift",
"atn/BasicBlockStartState.swift",
"atn/BasicState.swift",
"atn/BlockEndState.swift",
"atn/BlockStartState.swift",
"atn/ContextSensitivityInfo.swift",
"atn/DecisionEventInfo.swift",
"atn/DecisionInfo.swift",
"atn/DecisionState.swift",
"atn/DefaultATNConfig.swift",
"atn/EmptyPredictionContext.swift",
"atn/EpsilonTransition.swift",
"atn/ErrorInfo.swift",
"atn/LL1Analyzer.swift",
"atn/LexerATNConfig.swift",
"atn/LexerATNSimulator.swift",
"atn/LexerAction.swift",
"atn/LexerActionExecutor.swift",
"atn/LexerActionType.swift",
"atn/LexerChannelAction.swift",
"atn/LexerCustomAction.swift",
"atn/LexerIndexedCustomAction.swift",
"atn/LexerModeAction.swift",
"atn/LexerMoreAction.swift",
"atn/LexerPopModeAction.swift",
"atn/LexerPushModeAction.swift",
"atn/LexerSkipAction.swift",
"atn/LexerTypeAction.swift",
"atn/LookaheadEventInfo.swift",
"atn/LookupATNConfig.swift",
"atn/LookupDictionary.swift",
"atn/LoopEndState.swift",
"atn/NotSetTransition.swift",
"atn/ParseInfo.swift",
"atn/ParserATNSimulator.swift",
"atn/PlusBlockStartState.swift",
"atn/PlusLoopbackState.swift",
"atn/PrecedencePredicateTransition.swift",
"atn/PredicateEvalInfo.swift",
"atn/PredicateTransition.swift",
"atn/PredictionContext.swift",
"atn/PredictionContextCache.swift",
"atn/PredictionMode.swift",
"atn/ProfilingATNSimulator.swift",
"atn/RangeTransition.swift",
"atn/RuleStartState.swift",
"atn/RuleStopState.swift",
"atn/RuleTransition.swift",
"atn/SemanticContext.swift",
"atn/SetTransition.swift",
"atn/SingletonPredictionContext.swift",
"atn/StarBlockStartState.swift",
"atn/StarLoopEntryState.swift",
"atn/StarLoopbackState.swift",
"atn/TokensStartState.swift",
"atn/Transition.swift",
"atn/WildcardTransition.swift",
"dfa/DFA.swift",
"dfa/DFASerializer.swift",
"dfa/DFAState.swift",
"dfa/LexerDFASerializer.swift",
"misc/BitSet.swift",
"misc/DoubleKeyMap.swift",
"misc/IntSet.swift",
"misc/InterpreterDataReader.swift",
"misc/Interval.swift",
"misc/IntervalSet.swift",
"misc/MultiMap.swift",
"misc/MurmurHash.swift",
"misc/Utils.swift",
"misc/exception/ANTLRError.swift",
"misc/exception/ANTLRException.swift",
"misc/extension/ArrayExtension.swift",
"misc/extension/CharacterExtension.swift",
"misc/extension/IntStreamExtension.swift",
"misc/extension/StringExtension.swift",
"misc/extension/TokenExtension.swift",
"misc/extension/UUIDExtension.swift",
"misc/utils/CommonUtil.swift",
"misc/utils/Mutex.swift",
"misc/utils/Stack.swift",
"tree/AbstractParseTreeVisitor.swift",
"tree/ErrorNode.swift",
"tree/ParseTree.swift",
"tree/ParseTreeListener.swift",
"tree/ParseTreeProperty.swift",
"tree/ParseTreeVisitor.swift",
"tree/ParseTreeWalker.swift",
"tree/RuleNode.swift",
"tree/SyntaxTree.swift",
"tree/TerminalNode.swift",
"tree/TerminalNodeImpl.swift",
"tree/Tree.swift",
"tree/Trees.swift",
"tree/pattern/Chunk.swift",
"tree/pattern/ParseTreeMatch.swift",
"tree/pattern/ParseTreePattern.swift",
"tree/pattern/ParseTreePatternMatcher.swift",
"tree/pattern/RuleTagToken.swift",
"tree/pattern/TagChunk.swift",
"tree/pattern/TextChunk.swift",
"tree/pattern/TokenTagToken.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
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': 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/LexerB.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.
Done.