Build Information
Failed to build swift-format, reference main (e3cca1), with Swift 6.1 for Wasm on 12 Dec 2025 00:40:06 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1Build Log
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:860:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
858 |
859 | extension Finding.Message {
860 | fileprivate static let moveEndOfLineComment: Finding.Message =
| |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
861 | "move end-of-line comment that exceeds the line length"
862 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:863:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
861 | "move end-of-line comment that exceeds the line length"
862 |
863 | fileprivate static let addTrailingComma: Finding.Message =
| |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
864 | "add trailing comma to the last element in multiline collection literal"
865 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:866:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
864 | "add trailing comma to the last element in multiline collection literal"
865 |
866 | fileprivate static let removeTrailingComma: Finding.Message =
| |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
867 | "remove trailing comma from the last element in single line collection literal"
868 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
211 |
212 | // Convenience overloads for the enum types
213 | static let open = Token.open(.inconsistent, 0)
| |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 | static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
217 | }
218 |
219 | static let space = Token.space(size: 1, flexible: false)
| |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 | static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
| `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 | case syntax(String)
183 | case open(GroupBreakStyle)
:
223 | }
224 |
225 | static let `break` = Token.break(.continue, size: 1, newlines: .elective)
| |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 | static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
452 |
453 | extension Finding.Message {
454 | fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
| |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 | fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
496 | }
497 |
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
| |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
498 | fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 | fileprivate static let removeLineError: Finding.Message = "remove line break"
| |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 | fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
505 | }
506 |
507 | fileprivate static let lineLengthError: Finding.Message = "line is too long"
| |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 | /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 | /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 | public struct Message:
| `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 | CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 | {
[996/1008] Wrapping AST for SwiftFormat for debugging
[999/1056] Compiling _GenerateSwiftFormat RuleDocumentationGenerator.swift
[1000/1057] Compiling _GenerateSwiftFormat GenerateSwiftFormatPaths.swift
[1001/1057] Emitting module _SwiftFormatTestSupport
[1002/1057] Compiling _SwiftFormatTestSupport FindingSpec.swift
[1003/1057] Compiling swift_format Diagnostic.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1004/1057] Compiling swift_format DiagnosticsEngine.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1005/1059] Compiling _GenerateSwiftFormat RuleNameCacheGenerator.swift
[1006/1059] Compiling _GenerateSwiftFormat RuleRegistryGenerator.swift
[1007/1059] Compiling swift_format FileHandleTextOutputStream.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1008/1059] Compiling swift_format StderrDiagnosticPrinter.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1009/1059] Compiling swift_format PerformanceMeasurement.swift
[1010/1059] Compiling swift_format SwiftFormatCommand.swift
[1011/1059] Compiling swift_format ConfigurationLoader.swift
[1012/1059] Compiling _GenerateSwiftFormat PipelineGenerator.swift
[1013/1059] Compiling _GenerateSwiftFormat FileGenerator.swift
[1014/1059] Emitting module _GenerateSwiftFormat
[1015/1059] Compiling _GenerateSwiftFormat RuleCollector.swift
[1018/1061] Compiling swift_format Lint.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1019/1061] Compiling swift_format LintFormatOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1021/1061] Compiling swift_format FormatFrontend.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1022/1061] Compiling swift_format Frontend.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1025/1061] Compiling swift_format DumpConfiguration.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1026/1061] Compiling swift_format Format.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1027/1061] Compiling swift_format LintFrontend.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1028/1061] Compiling swift_format PrintVersion.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1029/1061] Compiling swift_format ConfigurationOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1030/1061] Emitting module swift_format
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1031/1061] Compiling swift_format TTY.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1032/1061] Compiling swift_format VersionOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[1033/1061] Compiling _SwiftFormatTestSupport Parsing.swift
[1034/1061] Compiling _SwiftFormatTestSupport MarkedText.swift
[1035/1061] Compiling _GenerateSwiftFormat Syntax+Convenience.swift
[1038/1061] Compiling _SwiftFormatTestSupport Configuration+Testing.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:4dfe22dedd7a52399668938cbd466a34545eff77bced906005dc4032a6549d90
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Lint Source Code
[2/2] Compiling plugin Format Source Code
[3/3] Compiling plugin GenerateManual
[4/4] Compiling plugin GenerateDoccReference
Building for debugging...
[4/49] Write swift-version-24593BA9C3E375BF.txt
[6/61] Emitting module SwiftSyntax603
[7/126] Compiling SwiftSyntax603 Empty.swift
[8/126] Emitting module SwiftSyntax602
[9/126] Compiling SwiftSyntax602 Empty.swift
[10/127] Emitting module SwiftSyntax603
[11/128] Compiling SwiftSyntax603 Empty.swift
[12/128] Emitting module SwiftSyntax509
[13/128] Compiling SwiftSyntax509 Empty.swift
[15/128] Emitting module SwiftSyntax510
[16/128] Compiling SwiftSyntax510 Empty.swift
[18/131] Emitting module SwiftSyntax600
[19/131] Compiling SwiftSyntax600 Empty.swift
[23/131] Emitting module Markdown
[25/140] Emitting module SwiftSyntax601
[26/140] Compiling SwiftSyntax601 Empty.swift
[28/209] Emitting module ArgumentParserToolInfo
[29/209] Emitting module SwiftSyntax600
[30/209] Compiling SwiftSyntax600 Empty.swift
[31/209] Compiling SwiftSyntax601 Empty.swift
[32/209] Emitting module SwiftSyntax601
[33/209] Emitting module SwiftSyntax510
[34/209] Compiling SwiftSyntax510 Empty.swift
[35/210] Compiling SwiftSyntax602 Empty.swift
[36/210] Emitting module SwiftSyntax602
[37/212] Compiling SwiftSyntax509 Empty.swift
[38/212] Emitting module SwiftSyntax509
[39/214] Compiling Markdown TableCellContainer.swift
[40/214] Compiling Markdown TableHead.swift
[41/214] Compiling Markdown TableRow.swift
[42/214] Compiling Markdown Replacement.swift
[43/214] Compiling Markdown SourceLocation.swift
[44/214] Compiling Markdown Emphasis.swift
[45/214] Compiling Markdown Image.swift
[46/214] Compiling Markdown InlineAttributes.swift
[52/211] Compiling Markdown BasicBlockContainer.swift
[53/211] Compiling Markdown BasicInlineContainer.swift
[54/211] Compiling Markdown BlockContainer.swift
[55/211] Compiling Markdown BlockMarkup.swift
[56/211] Compiling Markdown InlineContainer.swift
[57/211] Compiling Markdown InlineMarkup.swift
[58/211] Compiling Markdown ListItemContainer.swift
[59/211] Compiling Markdown AtomicCounter.swift
[60/219] Emitting module Markdown
[61/219] Compiling Markdown OrderedList.swift
[62/219] Compiling Markdown UnorderedList.swift
[63/219] Compiling Markdown Paragraph.swift
[64/219] Compiling Markdown CodeBlock.swift
[65/219] Compiling Markdown HTMLBlock.swift
[66/219] Compiling Markdown Heading.swift
[67/219] Compiling Markdown ThematicBreak.swift
[68/219] Compiling Markdown Table.swift
[69/219] Compiling Markdown TableBody.swift
[70/219] Compiling Markdown Link.swift
[71/219] Compiling Markdown Strikethrough.swift
[72/219] Compiling Markdown Strong.swift
[73/219] Compiling Markdown CustomInline.swift
[74/219] Compiling Markdown InlineCode.swift
[75/219] Compiling Markdown InlineHTML.swift
[76/219] Compiling Markdown LineBreak.swift
[77/219] Compiling Markdown SoftBreak.swift
[78/219] Compiling Markdown SymbolLink.swift
[79/345] Compiling SwiftSyntax RawSyntaxNodesD.swift
[80/345] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[81/345] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[82/345] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[83/345] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[84/345] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[85/345] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[86/345] Compiling SwiftSyntax RawSyntaxValidation.swift
[87/345] Compiling SwiftSyntax SyntaxNodesAB.swift
[88/345] Compiling ArgumentParserToolInfo ToolInfo.swift
[89/346] Compiling SwiftSyntax Identifier.swift
[90/346] Compiling SwiftSyntax MemoryLayout.swift
[91/346] Compiling SwiftSyntax MissingNodeInitializers.swift
[92/346] Compiling SwiftSyntax RawSyntax.swift
[93/346] Compiling SwiftSyntax RawSyntaxArena.swift
[94/346] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[95/346] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[96/346] Compiling SwiftSyntax RawSyntaxTokenView.swift
[97/346] Compiling SwiftSyntax SourceEdit.swift
[98/346] Compiling SwiftSyntax SourceLength.swift
[99/346] Compiling SwiftSyntax SourceLocation.swift
[100/346] Compiling SwiftSyntax SourcePresence.swift
[101/346] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[102/346] Compiling SwiftSyntax Syntax.swift
[103/346] Compiling SwiftSyntax SyntaxChildren.swift
[104/346] Compiling SwiftSyntax SyntaxCollection.swift
[105/346] Compiling SwiftSyntax SyntaxHashable.swift
[106/346] Compiling SwiftSyntax SyntaxIdentifier.swift
[108/345] Compiling ArgumentParserToolInfo ToolInfo.swift
[109/345] Emitting module ArgumentParserToolInfo
[110/390] Compiling ArgumentParser BashCompletionsGenerator.swift
[111/390] Compiling ArgumentParser CompletionsGenerator.swift
[112/390] Compiling ArgumentParser FishCompletionsGenerator.swift
[113/390] Compiling ArgumentParser ZshCompletionsGenerator.swift
[114/390] Compiling ArgumentParser Argument.swift
[115/390] Compiling ArgumentParser ArgumentDiscussion.swift
[116/390] Compiling ArgumentParser ArgumentHelp.swift
[117/390] Compiling ArgumentParser ArgumentVisibility.swift
[118/390] Compiling ArgumentParser CompletionKind.swift
[120/433] Compiling ArgumentParser SplitArguments.swift
[121/433] Compiling ArgumentParser DumpHelpGenerator.swift
[122/433] Compiling ArgumentParser HelpCommand.swift
[123/433] Compiling ArgumentParser HelpGenerator.swift
[124/433] Compiling ArgumentParser MessageInfo.swift
[125/433] Compiling ArgumentParser UsageGenerator.swift
[126/439] Compiling ArgumentParser ParsableArguments.swift
[127/439] Compiling ArgumentParser ParsableCommand.swift
[128/439] Compiling ArgumentParser ArgumentDecoder.swift
[129/439] Compiling ArgumentParser ArgumentDefinition.swift
[130/439] Compiling ArgumentParser ArgumentSet.swift
[131/439] Compiling ArgumentParser CommandParser.swift
[133/439] Compiling ArgumentParser CollectionExtensions.swift
[134/439] Compiling ArgumentParser Mutex.swift
[135/439] Compiling ArgumentParser Platform.swift
[136/439] Compiling ArgumentParser SequenceExtensions.swift
[137/439] Compiling ArgumentParser StringExtensions.swift
[138/439] Compiling ArgumentParser SwiftExtensions.swift
[139/439] Compiling ArgumentParser Tree.swift
[140/439] Compiling ArgumentParser CodingKeyValidator.swift
[141/439] Compiling ArgumentParser NonsenseFlagsValidator.swift
[142/439] Compiling ArgumentParser ParsableArgumentsValidation.swift
[143/439] Compiling ArgumentParser PositionalArgumentsValidator.swift
[144/439] Compiling ArgumentParser UniqueNamesValidator.swift
[145/439] Compiling SwiftSyntax Tokens.swift
[146/439] Compiling SwiftSyntax TriviaPieces.swift
[147/439] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[148/439] Compiling SwiftSyntax RawSyntaxNodesC.swift
[150/439] Compiling ArgumentParser Name.swift
[151/439] Compiling ArgumentParser Parsed.swift
[152/439] Compiling ArgumentParser ParsedValues.swift
[153/439] Compiling ArgumentParser ParserError.swift
[159/439] Compiling Markdown CharacterExtensions.swift
[160/439] Compiling Markdown CollectionExtensions.swift
[161/439] Compiling Markdown StringExtensions.swift
[162/439] Compiling Markdown MarkupVisitor.swift
[163/439] Compiling Markdown MarkupWalker.swift
[164/439] Compiling Markdown HTMLFormatter.swift
[165/439] Compiling Markdown MarkupFormatter.swift
[166/439] Compiling Markdown MarkupTreeDumper.swift
[167/439] Emitting module ArgumentParser
[176/445] Compiling ArgumentParser Tree.swift
[177/445] Compiling ArgumentParser CodingKeyValidator.swift
[178/445] Compiling ArgumentParser NonsenseFlagsValidator.swift
[179/445] Compiling ArgumentParser ParsableArgumentsValidation.swift
[180/445] Compiling ArgumentParser PositionalArgumentsValidator.swift
[181/445] Compiling ArgumentParser UniqueNamesValidator.swift
[182/445] Compiling ArgumentParser BashCompletionsGenerator.swift
[183/445] Compiling ArgumentParser CompletionsGenerator.swift
[184/445] Compiling ArgumentParser FishCompletionsGenerator.swift
[185/445] Compiling ArgumentParser ZshCompletionsGenerator.swift
[186/445] Compiling ArgumentParser Argument.swift
[187/445] Compiling ArgumentParser ArgumentDiscussion.swift
[188/445] Compiling ArgumentParser ArgumentHelp.swift
[189/445] Compiling ArgumentParser OptionGroup.swift
[190/445] Compiling ArgumentParser AsyncParsableCommand.swift
[191/445] Compiling ArgumentParser CommandConfiguration.swift
[192/445] Compiling ArgumentParser CommandGroup.swift
[193/445] Compiling ArgumentParser EnumerableFlag.swift
[194/445] Compiling ArgumentParser ExpressibleByArgument.swift
[214/445] Compiling ArgumentParser ArgumentVisibility.swift
[215/445] Compiling ArgumentParser CompletionKind.swift
[216/445] Compiling ArgumentParser Errors.swift
[217/445] Compiling ArgumentParser Flag.swift
[218/445] Compiling ArgumentParser NameSpecification.swift
[219/445] Compiling ArgumentParser Option.swift
[220/445] Compiling ArgumentParser InputKey.swift
[221/445] Compiling ArgumentParser InputOrigin.swift
[339/461] Emitting module SwiftSyntax
[375/461] Compiling SwiftSyntax SyntaxNodesC.swift
[376/461] Compiling SwiftSyntax SyntaxNodesD.swift
[377/461] Compiling SwiftSyntax SyntaxNodesEF.swift
[378/461] Compiling SwiftSyntax SyntaxNodesGHI.swift
[379/461] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[380/461] Compiling SwiftSyntax SyntaxNodesOP.swift
[381/461] Compiling SwiftSyntax SyntaxNodesQRS.swift
[382/461] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[429/520] Emitting module SwiftDiagnostics
[430/520] Compiling SwiftParser Expressions.swift
[431/520] Compiling SwiftParser IncrementalParseTransition.swift
[432/520] Compiling SwiftParser Directives.swift
[433/520] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[434/521] Compiling SwiftDiagnostics Message.swift
[435/521] Compiling SwiftDiagnostics FixIt.swift
[436/521] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[437/521] Compiling SwiftBasicFormat Indenter.swift
[438/521] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[439/521] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[440/521] Compiling SwiftBasicFormat Syntax+Extensions.swift
[441/521] Compiling SwiftDiagnostics Note.swift
[442/521] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[443/521] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[444/522] Emitting module SwiftBasicFormat
[445/522] Compiling SwiftBasicFormat BasicFormat.swift
[447/521] Compiling SwiftBasicFormat InferIndentation.swift
[449/521] Compiling SwiftParser StringLiterals.swift
[450/521] Compiling SwiftParser SwiftParserCompatibility.swift
[451/521] Compiling SwiftParser SwiftVersion.swift
[452/521] Compiling SwiftParser SyntaxUtils.swift
[453/521] Compiling SwiftParser TokenConsumer.swift
[454/521] Compiling SwiftParser TokenPrecedence.swift
[455/526] Compiling SwiftParser TokenSpec.swift
[456/526] Compiling SwiftParser TokenSpecSet.swift
[457/526] Compiling SwiftParser TopLevel.swift
[458/526] Compiling SwiftParser TriviaParser.swift
[459/526] Compiling SwiftParser Types.swift
[460/526] Emitting module SwiftParser
[461/526] Compiling SwiftParser LoopProgressCondition.swift
[462/526] Compiling SwiftParser Modifiers.swift
[463/526] Compiling SwiftParser Names.swift
[464/526] Compiling SwiftParser Nominals.swift
[465/526] Compiling SwiftParser Parameters.swift
[466/526] Compiling SwiftParser ParseSourceFile.swift
[467/526] Compiling SwiftParser Parser.swift
[468/526] Compiling SwiftParser Patterns.swift
[469/526] Compiling SwiftParser Recovery.swift
[470/526] Compiling SwiftParser Specifiers.swift
[471/526] Compiling SwiftParser Statements.swift
[472/526] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[473/526] Compiling SwiftParser Lexeme.swift
[474/526] Compiling SwiftParser LexemeSequence.swift
[475/526] Compiling SwiftParser Lexer.swift
[476/526] Compiling SwiftParser RegexLiteralLexer.swift
[477/526] Compiling SwiftParser UnicodeScalarExtensions.swift
[478/526] Compiling SwiftParser Lookahead.swift
[479/526] Compiling SwiftParser Attributes.swift
[480/526] Compiling SwiftParser Availability.swift
[481/526] Compiling SwiftParser CharacterInfo.swift
[482/526] Compiling SwiftParser CollectionNodes+Parsable.swift
[483/526] Compiling SwiftParser CompilerFiles.swift
[484/526] Compiling SwiftParser Declarations.swift
[489/526] Compiling SwiftParser IsValidIdentifier.swift
[490/526] Compiling SwiftParser Cursor.swift
[491/526] Compiling SwiftParser ExperimentalFeatures.swift
[492/526] Compiling SwiftParser IsLexerClassified.swift
[493/526] Compiling SwiftParser LayoutNodes+Parsable.swift
[494/526] Compiling SwiftParser Parser+TokenSpecSet.swift
[495/526] Compiling SwiftParser TokenSpecStaticMembers.swift
[497/549] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[498/550] Compiling SwiftOperators PrecedenceGroup.swift
[499/551] Compiling SwiftOperators OperatorTable.swift
[500/551] Compiling SwiftOperators PrecedenceGraph.swift
[501/551] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[502/551] Compiling SwiftParserDiagnostics PresenceUtils.swift
[503/551] Emitting module SwiftOperators
[504/551] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[505/551] Compiling SwiftOperators OperatorTable+Semantics.swift
[506/551] Compiling SwiftOperators SyntaxSynthesis.swift
[507/551] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[508/551] Compiling SwiftParserDiagnostics Utils.swift
[509/551] Compiling SwiftOperators OperatorTable+Folding.swift
[512/552] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[516/552] Emitting module SwiftParserDiagnostics
[517/552] Compiling SwiftParserDiagnostics MissingNodesError.swift
[518/552] Compiling SwiftParserDiagnostics MissingTokenError.swift
[519/552] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[520/552] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[521/552] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[522/552] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[524/566] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[525/566] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[526/567] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[527/567] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[528/567] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[529/567] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[530/567] Compiling SwiftSyntaxBuilder Indenter.swift
[531/567] Compiling SwiftSyntaxBuilder ListBuilder.swift
[532/567] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[533/567] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[534/567] Emitting module SwiftSyntaxBuilder
[535/567] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[536/567] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[537/567] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[538/567] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[539/567] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[541/650] Compiling SwiftFormat RuleMask.swift
[542/650] Compiling SwiftFormat RuleNameCache+Generated.swift
[543/650] Compiling SwiftFormat RuleRegistry+Generated.swift
[544/650] Compiling SwiftFormat RuleState.swift
[545/650] Compiling SwiftFormat SyntaxFormatRule.swift
[546/650] Compiling SwiftFormat SyntaxLintRule.swift
[547/650] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[548/650] Compiling SwiftFormat SyntaxTraits.swift
[550/650] Emitting module SwiftFormat
[551/650] Compiling SwiftFormat Configuration+Default.swift
[552/650] Compiling SwiftFormat Configuration+Dump.swift
[553/650] Compiling SwiftFormat Configuration.swift
[554/650] Compiling SwiftFormat DebugOptions.swift
[555/650] Compiling SwiftFormat Finding.swift
[556/650] Compiling SwiftFormat FindingCategorizing.swift
[557/650] Compiling SwiftFormat Indent.swift
[558/650] Compiling SwiftFormat Selection.swift
[559/650] Compiling SwiftFormat SwiftFormatError.swift
[560/650] Compiling SwiftFormat SwiftFormatter.swift
[561/650] Compiling SwiftFormat SwiftLinter.swift
[562/650] Compiling SwiftFormat Context.swift
[563/683] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[564/721] Compiling SwiftDiagnostics Message.swift
[565/721] Compiling SwiftParser Parser.swift
[566/721] Compiling SwiftParser Patterns.swift
[567/721] Compiling SwiftParser Recovery.swift
[568/721] Compiling SwiftParser Specifiers.swift
[569/721] Compiling SwiftParser Statements.swift
[570/721] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[571/721] Compiling SwiftParser StringLiterals.swift
[572/721] Compiling SwiftParser SwiftParserCompatibility.swift
[573/721] Compiling SwiftParser SwiftVersion.swift
[574/721] Compiling SwiftParser SyntaxUtils.swift
[575/721] Compiling SwiftParser TokenConsumer.swift
[576/721] Compiling SwiftParser TokenPrecedence.swift
[577/721] Compiling SwiftFormat RememberingIterator.swift
[578/721] Compiling SwiftFormat Rule.swift
[579/721] Compiling SwiftFormat RuleBasedFindingCategory.swift
[588/721] Compiling SwiftFormat Trivia+Convenience.swift
[589/721] Compiling SwiftFormat NoParensAroundConditions.swift
[590/721] Compiling SwiftFormat NoPlaygroundLiterals.swift
[591/721] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[592/721] Compiling SwiftFormat OmitExplicitReturns.swift
[593/721] Compiling SwiftFormat OneCasePerLine.swift
[594/721] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[595/721] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[596/721] Compiling SwiftFormat OrderedImports.swift
[597/721] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[598/721] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[599/721] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[600/721] Emitting module SwiftDiagnostics
[601/721] Compiling SwiftBasicFormat Syntax+Extensions.swift
[602/721] Compiling SwiftDiagnostics Note.swift
[603/721] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[604/721] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[605/721] Emitting module SwiftBasicFormat
[606/721] Compiling SwiftParser Attributes.swift
[607/721] Compiling SwiftParser Availability.swift
[608/721] Compiling SwiftParser CharacterInfo.swift
[609/721] Compiling SwiftParser CollectionNodes+Parsable.swift
[610/721] Compiling SwiftBasicFormat BasicFormat.swift
[611/721] Compiling SwiftBasicFormat Indenter.swift
[612/721] Compiling SwiftBasicFormat InferIndentation.swift
[613/722] Compiling SwiftDiagnostics FixIt.swift
[614/722] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[616/722] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[624/726] Compiling SwiftFormat UseEarlyExits.swift
[625/726] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[626/726] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[627/726] Compiling SwiftFormat UseShorthandTypeNames.swift
[628/726] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[629/726] Compiling SwiftFormat UseSynthesizedInitializer.swift
[630/726] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[631/726] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[632/726] Compiling SwiftFormat ValidateDocumentationComments.swift
[633/726] Compiling SwiftFormat FileIterator.swift
[634/726] Compiling SwiftFormat URL+isRoot.swift
[635/726] Emitting module SwiftParser
[636/726] Compiling SwiftParser Lexeme.swift
[637/726] Compiling SwiftParser LexemeSequence.swift
[638/726] Compiling SwiftParser Lexer.swift
[639/726] Compiling SwiftParser RegexLiteralLexer.swift
[640/726] Compiling SwiftParser UnicodeScalarExtensions.swift
[641/726] Compiling SwiftParser Lookahead.swift
[642/726] Compiling SwiftParser LoopProgressCondition.swift
[643/726] Compiling SwiftParser Modifiers.swift
[644/726] Compiling SwiftParser Names.swift
[645/726] Compiling SwiftParser Nominals.swift
[646/726] Compiling SwiftParser Parameters.swift
[647/726] Compiling SwiftParser ParseSourceFile.swift
[648/726] Compiling SwiftParser TokenSpec.swift
[649/726] Compiling SwiftParser TokenSpecSet.swift
[650/726] Compiling SwiftParser TopLevel.swift
[651/726] Compiling SwiftParser TriviaParser.swift
[652/726] Compiling SwiftParser Types.swift
[671/726] Compiling SwiftFormat DocumentationComment.swift
[672/726] Compiling SwiftFormat DocumentationCommentText.swift
[673/726] Compiling SwiftFormat Finding+Convenience.swift
[674/726] Compiling SwiftFormat FindingEmitter.swift
[675/726] Compiling SwiftFormat FormatPipeline.swift
[676/726] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[677/726] Compiling SwiftFormat ImportsXCTestVisitor.swift
[678/726] Compiling SwiftFormat LazySplitSequence.swift
[679/726] Compiling SwiftFormat LintPipeline.swift
[680/726] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[681/726] Compiling SwiftFormat Parsing.swift
[682/726] Compiling SwiftFormat Pipelines+Generated.swift
[688/726] Compiling SwiftParser ExperimentalFeatures.swift
[689/726] Compiling SwiftParser IsLexerClassified.swift
[690/726] Compiling SwiftParser LayoutNodes+Parsable.swift
[691/726] Compiling SwiftParser Parser+TokenSpecSet.swift
[692/726] Compiling SwiftParser TokenSpecStaticMembers.swift
[693/726] Compiling SwiftFormat NoLeadingUnderscores.swift
[694/727] Wrapping AST for SwiftFormat for debugging
[700/727] Compiling SwiftParser CompilerFiles.swift
[701/727] Compiling SwiftParser Declarations.swift
[702/727] Compiling SwiftParser Directives.swift
[703/727] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[704/727] Compiling SwiftParser Expressions.swift
[705/727] Compiling SwiftParser IncrementalParseTransition.swift
[706/727] Compiling SwiftParser IsValidIdentifier.swift
[707/727] Compiling SwiftParser Cursor.swift
[708/744] Emitting module swift_format
[709/746] Compiling swift_format TTY.swift
[710/746] Compiling swift_format VersionOptions.swift
[711/746] Compiling swift_format PerformanceMeasurement.swift
[712/746] Compiling swift_format SwiftFormatCommand.swift
[713/746] Compiling swift_format Diagnostic.swift
[714/746] Compiling swift_format DiagnosticsEngine.swift
[715/746] Compiling swift_format DumpConfiguration.swift
[716/746] Compiling swift_format Format.swift
[717/746] Compiling swift_format LintFrontend.swift
[718/746] Compiling swift_format PrintVersion.swift
[719/746] Compiling swift_format ConfigurationOptions.swift
[720/746] Compiling swift_format ConfigurationLoader.swift
[721/746] Compiling swift_format FormatFrontend.swift
[722/746] Compiling swift_format Frontend.swift
[729/747] Compiling swift_format Lint.swift
[730/747] Compiling swift_format LintFormatOptions.swift
[731/747] Compiling swift_format FileHandleTextOutputStream.swift
[732/747] Compiling swift_format StderrDiagnosticPrinter.swift
[733/747] Wrapping AST for swift-format for debugging
[734/747] Write Objects.LinkFileList
[736/770] Compiling SwiftOperators PrecedenceGroup.swift
[737/771] Compiling SwiftOperators OperatorTable+Semantics.swift
[738/771] Compiling SwiftOperators PrecedenceGraph.swift
[739/771] Compiling SwiftOperators OperatorTable.swift
[740/771] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[741/772] Compiling SwiftOperators OperatorTable+Folding.swift
[742/772] Compiling SwiftParserDiagnostics MissingNodesError.swift
[743/772] Compiling SwiftParserDiagnostics MissingTokenError.swift
[744/772] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[745/772] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[746/772] Emitting module SwiftOperators
[747/772] Compiling SwiftOperators SyntaxSynthesis.swift
[749/773] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[750/772] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[751/772] Compiling SwiftParserDiagnostics Utils.swift
[752/772] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[752/772] Linking swift-format-tool
[754/772] Emitting module SwiftParserDiagnostics
[759/772] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[760/772] Compiling SwiftParserDiagnostics PresenceUtils.swift
[761/772] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[762/772] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[764/787] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[765/787] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[766/788] Compiling SwiftSyntaxBuilder Indenter.swift
[767/788] Compiling SwiftSyntaxBuilder ListBuilder.swift
[768/788] Emitting module SwiftSyntaxBuilder
[769/788] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[770/788] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[771/788] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[772/788] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[773/788] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[774/788] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[775/788] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[776/788] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[777/788] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[778/788] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[779/788] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[781/871] Compiling SwiftFormat RememberingIterator.swift
[782/871] Compiling SwiftFormat Rule.swift
[783/871] Compiling SwiftFormat RuleBasedFindingCategory.swift
[784/871] Compiling SwiftFormat RuleMask.swift
[785/871] Compiling SwiftFormat RuleNameCache+Generated.swift
[786/871] Compiling SwiftFormat RuleRegistry+Generated.swift
[787/871] Compiling SwiftFormat RuleState.swift
[788/871] Compiling SwiftFormat SyntaxFormatRule.swift
[789/871] Compiling SwiftFormat SyntaxLintRule.swift
[790/871] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[791/871] Compiling SwiftFormat SyntaxTraits.swift
[792/871] Compiling SwiftFormat Trivia+Convenience.swift
[793/882] Emitting module SwiftFormat
[794/882] Compiling SwiftFormat Configuration+Default.swift
[795/882] Compiling SwiftFormat Configuration+Dump.swift
[796/882] Compiling SwiftFormat Configuration.swift
[797/882] Compiling SwiftFormat DebugOptions.swift
[798/882] Compiling SwiftFormat Finding.swift
[799/882] Compiling SwiftFormat FindingCategorizing.swift
[800/882] Compiling SwiftFormat Indent.swift
[801/882] Compiling SwiftFormat Selection.swift
[802/882] Compiling SwiftFormat SwiftFormatError.swift
[803/882] Compiling SwiftFormat SwiftFormatter.swift
[804/882] Compiling SwiftFormat SwiftLinter.swift
[805/882] Compiling SwiftFormat Context.swift
[806/882] Compiling SwiftFormat UseEarlyExits.swift
[807/882] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[808/882] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[809/882] Compiling SwiftFormat UseShorthandTypeNames.swift
[810/882] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[811/882] Compiling SwiftFormat UseSynthesizedInitializer.swift
[812/882] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[813/882] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[814/882] Compiling SwiftFormat ValidateDocumentationComments.swift
[815/882] Compiling SwiftFormat FileIterator.swift
[816/882] Compiling SwiftFormat URL+isRoot.swift
[817/882] Compiling SwiftFormat DocumentationComment.swift
[818/882] Compiling SwiftFormat DocumentationCommentText.swift
[819/882] Compiling SwiftFormat Finding+Convenience.swift
[820/882] Compiling SwiftFormat FindingEmitter.swift
[821/882] Compiling SwiftFormat FormatPipeline.swift
[822/882] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[823/882] Compiling SwiftFormat ImportsXCTestVisitor.swift
[824/882] Compiling SwiftFormat LazySplitSequence.swift
[825/882] Compiling SwiftFormat LintPipeline.swift
[826/882] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[827/882] Compiling SwiftFormat Parsing.swift
[828/882] Compiling SwiftFormat Pipelines+Generated.swift
[829/882] Compiling SwiftFormat NoParensAroundConditions.swift
[830/882] Compiling SwiftFormat NoPlaygroundLiterals.swift
[831/882] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[832/882] Compiling SwiftFormat OmitExplicitReturns.swift
[833/882] Compiling SwiftFormat OneCasePerLine.swift
[834/882] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[835/882] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[836/882] Compiling SwiftFormat OrderedImports.swift
[837/882] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[838/882] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[839/882] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[840/882] Compiling SwiftFormat NeverForceUnwrap.swift
[841/882] Compiling SwiftFormat NeverUseForceTry.swift
[842/882] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[843/882] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[844/882] Compiling SwiftFormat NoAssignmentInExpressions.swift
[845/882] Compiling SwiftFormat NoBlockComments.swift
[846/882] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[847/882] Compiling SwiftFormat NoEmptyLineOpeningClosingBraces.swift
[848/882] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[849/882] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[850/882] Compiling SwiftFormat NoLeadingUnderscores.swift
[851/882] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[852/882] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[853/882] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[854/882] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[855/882] Compiling SwiftFormat AvoidRetroactiveConformances.swift
[856/882] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[857/882] Compiling SwiftFormat DoNotUseSemicolons.swift
[858/882] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[859/882] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[860/882] Compiling SwiftFormat FullyIndirectEnum.swift
[861/882] Compiling SwiftFormat GroupNumericLiterals.swift
[862/882] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[863/882] Compiling SwiftFormat WithAttributesSyntax+Convenience.swift
[864/882] Compiling SwiftFormat WithSemicolonSyntax.swift
[865/882] Compiling SwiftFormat Comment.swift
[866/882] Compiling SwiftFormat Indent+Length.swift
[867/882] Compiling SwiftFormat PrettyPrint.swift
[868/882] Compiling SwiftFormat PrettyPrintBuffer.swift
[869/882] Compiling SwiftFormat PrettyPrintFindingCategory.swift
[870/882] Compiling SwiftFormat Token.swift
[871/882] Compiling SwiftFormat TokenStreamCreator.swift
[872/882] Compiling SwiftFormat Verbatim.swift
[873/882] Compiling SwiftFormat WhitespaceFindingCategory.swift
[874/882] Compiling SwiftFormat WhitespaceLinter.swift
[875/883] Wrapping AST for SwiftFormat for debugging
[877/901] Compiling swift_format Diagnostic.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[878/901] Compiling swift_format DiagnosticsEngine.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[879/915] Emitting module swift_format
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[880/916] Compiling swift_format PerformanceMeasurement.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[881/916] Compiling swift_format SwiftFormatCommand.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[882/916] Compiling swift_format LintFrontend.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[883/916] Compiling swift_format PrintVersion.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[884/916] Compiling swift_format ConfigurationOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[885/916] Compiling swift_format FileHandleTextOutputStream.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[886/916] Compiling swift_format StderrDiagnosticPrinter.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[887/916] Compiling swift_format Lint.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[888/916] Compiling swift_format LintFormatOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[889/916] Compiling swift_format DumpConfiguration.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[890/916] Compiling swift_format Format.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[891/916] Compiling _GenerateSwiftFormat GenerateSwiftFormatPaths.swift
[892/917] Emitting module _SwiftFormatTestSupport
[893/917] Compiling swift_format ConfigurationLoader.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[894/917] Compiling swift_format FormatFrontend.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[895/917] Compiling swift_format Frontend.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[896/917] Compiling swift_format TTY.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[897/917] Compiling swift_format VersionOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/StderrDiagnosticPrinter.swift:13:8: error: no such module 'Dispatch'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import Dispatch
| `- error: no such module 'Dispatch'
14 | import Foundation
15 |
[898/917] Emitting module _GenerateSwiftFormat
[899/917] Compiling _GenerateSwiftFormat FileGenerator.swift
[900/917] Compiling _GenerateSwiftFormat Syntax+Convenience.swift
[901/917] Compiling _GenerateSwiftFormat RuleDocumentationGenerator.swift
[902/917] Compiling _GenerateSwiftFormat RuleNameCacheGenerator.swift
[903/917] Compiling _GenerateSwiftFormat RuleRegistryGenerator.swift
[904/917] Compiling _SwiftFormatTestSupport Parsing.swift
[905/917] Compiling _SwiftFormatTestSupport FindingSpec.swift
[906/917] Compiling _GenerateSwiftFormat PipelineGenerator.swift
BUILD FAILURE 6.1 wasm