The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-format, reference 603.0.0-prerelease-2026-02-09 (374ca2), with Swift 6.1 for Wasm on 10 Feb 2026 00:55:26 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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

Build Log

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 |   {
[1002/1031] Compiling SwiftFormat Comment.swift
/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 |   {
[1004/1031] Compiling SwiftFormat PrettyPrint.swift
/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 |   {
[1005/1031] Compiling SwiftFormat PrettyPrintBuffer.swift
/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 |   {
[1006/1031] Compiling SwiftFormat PrettyPrintFindingCategory.swift
/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 |   {
[1007/1031] Compiling SwiftFormat Token.swift
/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 |   {
[1008/1031] Compiling SwiftFormat TokenStreamCreator.swift
/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 |   {
[1009/1031] Compiling SwiftFormat Verbatim.swift
/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 |   {
[1010/1031] Compiling SwiftFormat WhitespaceFindingCategory.swift
/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 |   {
[1011/1031] Compiling SwiftFormat WhitespaceLinter.swift
/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 |   {
[1024/1032] Wrapping AST for SwiftFormat for debugging
[1026/1063] 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 |
[1027/1063] 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 |
[1028/1065] 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 |
[1029/1065] 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 |
[1030/1065] Emitting module _SwiftFormatTestSupport
[1031/1065] 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 |
[1032/1065] 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 |
[1033/1065] 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 |
[1034/1065] Emitting module _GenerateSwiftFormat
[1035/1065] Compiling _GenerateSwiftFormat FileGenerator.swift
[1036/1066] Compiling _GenerateSwiftFormat RuleNameCacheGenerator.swift
[1037/1066] Compiling _GenerateSwiftFormat RuleRegistryGenerator.swift
[1038/1066] Compiling _GenerateSwiftFormat RuleDocumentationGenerator.swift
[1039/1066] Compiling _GenerateSwiftFormat GenerateSwiftFormatPaths.swift
[1040/1066] 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 |
[1041/1066] 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 |
[1042/1066] 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 |
[1043/1066] 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 |
[1044/1066] 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 |
[1045/1066] 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 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1046/1066] 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 |
[1047/1066] 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 |
[1048/1066] 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 |
[1049/1066] 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 |
[1050/1066] 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 |
[1051/1066] 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 |
[1052/1066] Compiling _SwiftFormatTestSupport MarkedText.swift
[1053/1066] Compiling _SwiftFormatTestSupport FindingSpec.swift
[1054/1066] Compiling _SwiftFormatTestSupport Parsing.swift
[1055/1066] Compiling _SwiftFormatTestSupport Configuration+Testing.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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:58b971189c4d3c564696bb40c86e07506670ed096ab7351a005c7c449525017a
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] Compiling SwiftSyntax600 Empty.swift
[7/109] Compiling SwiftSyntax603 Empty.swift
[8/126] Emitting module SwiftSyntax510
[9/126] Compiling SwiftSyntax510 Empty.swift
[10/126] Emitting module SwiftSyntax600
[11/126] Emitting module SwiftSyntax602
[12/126] Compiling SwiftSyntax602 Empty.swift
[13/126] Compiling SwiftSyntax509 Empty.swift
[14/129] Emitting module SwiftSyntax603
[15/130] Emitting module SwiftSyntax509
[16/130] Emitting module SwiftSyntax603
[17/130] Compiling SwiftSyntax603 Empty.swift
[20/132] Emitting module SwiftSyntax601
[21/132] Compiling SwiftSyntax601 Empty.swift
[27/133] Compiling Markdown BasicBlockContainer.swift
[28/133] Compiling Markdown BasicInlineContainer.swift
[29/133] Compiling Markdown BlockContainer.swift
[30/133] Compiling Markdown BlockMarkup.swift
[31/133] Compiling Markdown InlineContainer.swift
[32/133] Compiling Markdown InlineMarkup.swift
[33/133] Compiling Markdown ListItemContainer.swift
[34/133] Compiling Markdown AtomicCounter.swift
[35/141] Compiling Markdown OrderedList.swift
[36/141] Compiling Markdown UnorderedList.swift
[37/141] Compiling Markdown Paragraph.swift
[38/141] Compiling Markdown CodeBlock.swift
[39/141] Compiling Markdown HTMLBlock.swift
[40/141] Compiling Markdown Heading.swift
[41/141] Compiling Markdown ThematicBreak.swift
[42/141] Compiling Markdown Table.swift
[43/141] Compiling Markdown TableBody.swift
[44/141] Compiling Markdown BlockDirective.swift
[45/141] Compiling Markdown BlockQuote.swift
[46/141] Compiling Markdown CustomBlock.swift
[47/141] Compiling Markdown DoxygenAbstract.swift
[48/141] Compiling Markdown DoxygenDiscussion.swift
[49/141] Compiling Markdown DoxygenNote.swift
[50/141] Compiling Markdown DoxygenParameter.swift
[51/141] Compiling Markdown DoxygenReturns.swift
[52/141] Compiling Markdown ListItem.swift
[53/141] Compiling Markdown Link.swift
[54/141] Compiling Markdown Strikethrough.swift
[55/141] Compiling Markdown Strong.swift
[56/141] Compiling Markdown CustomInline.swift
[57/141] Compiling Markdown InlineCode.swift
[58/141] Compiling Markdown InlineHTML.swift
[59/141] Compiling Markdown LineBreak.swift
[60/141] Compiling Markdown SoftBreak.swift
[61/141] Compiling Markdown SymbolLink.swift
[62/141] Compiling Markdown TableCell.swift
[63/141] Compiling Markdown TableCellContainer.swift
[64/141] Compiling Markdown TableHead.swift
[65/141] Compiling Markdown TableRow.swift
[66/141] Compiling Markdown Replacement.swift
[67/141] Compiling Markdown SourceLocation.swift
[68/141] Compiling Markdown Emphasis.swift
[69/141] Compiling Markdown Image.swift
[70/141] Compiling Markdown InlineAttributes.swift
[71/141] Emitting module Markdown
[72/141] Compiling Markdown ChildIndexPath.swift
[73/141] Compiling Markdown DirectiveArgument.swift
[74/141] Compiling Markdown Document.swift
[75/141] Compiling Markdown LiteralMarkup.swift
[76/141] Compiling Markdown Markup.swift
[77/141] Compiling Markdown MarkupChildren.swift
[78/141] Compiling Markdown MarkupData.swift
[79/141] Compiling Markdown PlainTextConvertibleMarkup.swift
[80/141] Compiling Markdown RawMarkup.swift
[81/140] Emitting module SwiftSyntax602
[82/140] Compiling SwiftSyntax602 Empty.swift
[83/141] Compiling SwiftSyntax510 Empty.swift
[85/145] Emitting module SwiftSyntax510
[86/145] Emitting module SwiftSyntax601
[87/145] Compiling SwiftSyntax601 Empty.swift
[88/148] Emitting module SwiftSyntax509
[89/148] Emitting module SwiftSyntax600
[90/148] Compiling SwiftSyntax600 Empty.swift
[91/149] Compiling SwiftSyntax509 Empty.swift
[96/212] Compiling Markdown CharacterExtensions.swift
[97/212] Compiling Markdown CollectionExtensions.swift
[98/212] Compiling Markdown StringExtensions.swift
[99/212] Compiling Markdown MarkupVisitor.swift
[100/212] Compiling Markdown MarkupWalker.swift
[101/212] Compiling Markdown HTMLFormatter.swift
[102/212] Compiling Markdown MarkupFormatter.swift
[103/212] Compiling Markdown MarkupTreeDumper.swift
[104/274] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[105/274] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[106/274] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[107/274] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[108/274] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[109/274] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[110/274] Compiling SwiftSyntax RawSyntaxValidation.swift
[111/274] Compiling SwiftSyntax SyntaxNodesAB.swift
[112/282] Compiling SwiftSyntax SourceEdit.swift
[122/345] Compiling ArgumentParserToolInfo ToolInfo.swift
[123/345] Emitting module ArgumentParserToolInfo
[125/346] Emitting module Markdown
[126/346] Compiling SwiftSyntax SourceLength.swift
[127/346] Compiling SwiftSyntax SourceLocation.swift
[128/346] Compiling SwiftSyntax SourcePresence.swift
[129/346] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[130/346] Compiling SwiftSyntax Syntax.swift
[131/346] Compiling SwiftSyntax SyntaxChildren.swift
[132/346] Compiling SwiftSyntax SyntaxCollection.swift
[133/346] Compiling SwiftSyntax SyntaxHashable.swift
[134/346] Compiling SwiftSyntax SyntaxIdentifier.swift
[135/346] Compiling SwiftSyntax Identifier.swift
[136/346] Compiling SwiftSyntax MemoryLayout.swift
[137/346] Compiling SwiftSyntax MissingNodeInitializers.swift
[138/346] Compiling SwiftSyntax RawSyntax.swift
[139/346] Compiling SwiftSyntax RawSyntaxArena.swift
[140/346] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[141/346] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[142/346] Compiling SwiftSyntax RawSyntaxTokenView.swift
[143/346] Compiling SwiftSyntax SourceEdit.swift
[144/346] Compiling SwiftSyntax SyntaxRewriter.swift
[145/346] Compiling SwiftSyntax SyntaxTraits.swift
[146/346] Compiling SwiftSyntax SyntaxVisitor.swift
[147/346] Compiling SwiftSyntax TokenKind.swift
[148/346] Compiling SwiftSyntax Tokens.swift
[149/346] Compiling SwiftSyntax TriviaPieces.swift
[150/346] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[151/346] Compiling SwiftSyntax RawSyntaxNodesC.swift
[152/346] Compiling SwiftSyntax RawSyntaxNodesD.swift
[153/345] Compiling SwiftSyntax AbsolutePosition.swift
[154/345] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[155/345] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[156/345] Compiling SwiftSyntax Assert.swift
[157/345] Compiling SwiftSyntax BumpPtrAllocator.swift
[158/345] Compiling SwiftSyntax CommonAncestor.swift
[159/345] Compiling SwiftSyntax Convenience.swift
[160/345] Compiling SwiftSyntax CustomTraits.swift
[161/345] Compiling SwiftSyntax EditorPlaceholder.swift
[162/345] Compiling ArgumentParserToolInfo ToolInfo.swift
[163/345] Emitting module ArgumentParserToolInfo
[165/437] Compiling ArgumentParser Foundation.swift
[166/437] Compiling ArgumentParser Mutex.swift
[167/437] Compiling ArgumentParser Platform.swift
[168/437] Compiling ArgumentParser SequenceExtensions.swift
[169/437] Compiling ArgumentParser StringExtensions.swift
[170/437] Compiling ArgumentParser SwiftExtensions.swift
[171/443] Compiling ArgumentParser InputOrigin.swift
[172/443] Compiling ArgumentParser Name.swift
[173/443] Compiling ArgumentParser Parsed.swift
[174/443] Compiling ArgumentParser ParsedValues.swift
[175/443] Compiling ArgumentParser ParserError.swift
[176/443] Compiling ArgumentParser SplitArguments.swift
[177/449] Compiling ArgumentParser ArgumentVisibility.swift
[178/449] Compiling ArgumentParser CompletionKind.swift
[179/449] Compiling ArgumentParser Errors.swift
[180/449] Compiling ArgumentParser Flag.swift
[181/449] Compiling ArgumentParser NameSpecification.swift
[182/449] Compiling ArgumentParser Option.swift
[183/449] Compiling ArgumentParser OptionGroup.swift
[184/449] Compiling ArgumentParser BashCompletionsGenerator.swift
[185/449] Compiling ArgumentParser CompletionsGenerator.swift
[186/457] Compiling SwiftSyntax SyntaxNodesC.swift
[187/457] Compiling SwiftSyntax SyntaxNodesD.swift
[188/457] Compiling SwiftSyntax SyntaxNodesEF.swift
[189/457] Compiling SwiftSyntax SyntaxNodesGHI.swift
[190/457] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[191/457] Compiling SwiftSyntax SyntaxNodesOP.swift
[192/457] Compiling SwiftSyntax SyntaxNodesQRS.swift
[193/457] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[203/457] Compiling ArgumentParser Tree.swift
[204/457] Compiling ArgumentParser CodingKeyValidator.swift
[205/457] Compiling ArgumentParser NonsenseFlagsValidator.swift
[206/457] Compiling ArgumentParser ParsableArgumentsValidation.swift
[207/457] Compiling ArgumentParser PositionalArgumentsValidator.swift
[208/457] Compiling ArgumentParser UniqueNamesValidator.swift
[209/457] Compiling SwiftSyntax SyntaxEnum.swift
[210/457] Compiling SwiftSyntax SyntaxKind.swift
[211/457] Compiling SwiftSyntax SyntaxNodeStructure.swift
[212/458] Compiling ArgumentParser FishCompletionsGenerator.swift
[213/458] Compiling ArgumentParser ZshCompletionsGenerator.swift
[214/458] Compiling ArgumentParser Argument.swift
[215/458] Compiling ArgumentParser ArgumentDiscussion.swift
[216/458] Compiling ArgumentParser ArgumentHelp.swift
[217/458] Compiling ArgumentParser ParentCommand.swift
[218/458] Compiling ArgumentParser AsyncParsableCommand.swift
[219/458] Compiling ArgumentParser CommandConfiguration.swift
[220/458] Compiling ArgumentParser CommandGroup.swift
[234/457] Emitting module ArgumentParser
[249/457] Compiling ArgumentParser ParsableCommand.swift
[250/457] Compiling ArgumentParser ArgumentDecoder.swift
[251/457] Compiling ArgumentParser ArgumentDefinition.swift
[252/457] Compiling ArgumentParser ArgumentSet.swift
[253/457] Compiling ArgumentParser CommandParser.swift
[254/457] Compiling ArgumentParser InputKey.swift
[259/457] Compiling ArgumentParser EnumerableFlag.swift
[260/457] Compiling ArgumentParser ExpressibleByArgument.swift
[261/457] Compiling ArgumentParser ParsableArguments.swift
[268/457] Compiling ArgumentParser DumpHelpGenerator.swift
[269/457] Compiling ArgumentParser HelpCommand.swift
[270/457] Compiling ArgumentParser HelpGenerator.swift
[271/457] Compiling ArgumentParser MessageInfo.swift
[272/457] Compiling ArgumentParser UsageGenerator.swift
[273/457] Compiling ArgumentParser CollectionExtensions.swift
[286/457] Emitting module ArgumentParser
[316/457] Emitting module SwiftSyntax
[318/465] Compiling SwiftSyntax SyntaxProtocol.swift
[319/465] Compiling SwiftSyntax SyntaxText.swift
[320/465] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[321/465] Compiling SwiftSyntax TokenDiagnostic.swift
[322/465] Compiling SwiftSyntax TokenSequence.swift
[323/465] Compiling SwiftSyntax TokenSyntax.swift
[324/465] Compiling SwiftSyntax Trivia.swift
[325/465] Compiling SwiftSyntax Utils.swift
[424/465] Compiling SwiftSyntax SyntaxNodesC.swift
[425/465] Compiling SwiftSyntax SyntaxNodesD.swift
[426/465] Compiling SwiftSyntax SyntaxNodesEF.swift
[427/465] Compiling SwiftSyntax SyntaxNodesGHI.swift
[428/465] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[429/465] Compiling SwiftSyntax SyntaxNodesOP.swift
[430/465] Compiling SwiftSyntax SyntaxNodesQRS.swift
[431/465] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[433/482] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[434/482] Compiling SwiftDiagnostics Message.swift
[435/495] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[436/508] Compiling SwiftDiagnostics FixIt.swift
[437/514] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[438/514] Compiling SwiftParser Attributes.swift
[439/514] Compiling SwiftParser Availability.swift
[440/514] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[441/514] Emitting module SwiftDiagnostics
[442/514] Compiling SwiftParser CharacterInfo.swift
[443/514] Compiling SwiftParser CollectionNodes+Parsable.swift
[444/525] Compiling SwiftBasicFormat Syntax+Extensions.swift
[445/525] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[446/525] Compiling SwiftBasicFormat Indenter.swift
[447/525] Compiling SwiftBasicFormat InferIndentation.swift
[448/525] Compiling SwiftDiagnostics Note.swift
[450/526] Emitting module SwiftBasicFormat
[451/526] Compiling SwiftBasicFormat BasicFormat.swift
[453/525] Compiling SwiftParser Lexeme.swift
[454/525] Compiling SwiftParser LexemeSequence.swift
[455/525] Compiling SwiftParser Lexer.swift
[456/525] Compiling SwiftParser RegexLiteralLexer.swift
[457/525] Compiling SwiftParser UnicodeScalarExtensions.swift
[458/525] Compiling SwiftParser Lookahead.swift
[459/525] Compiling SwiftParser LoopProgressCondition.swift
[460/525] Compiling SwiftParser Modifiers.swift
[461/525] Compiling SwiftParser Names.swift
[462/525] Compiling SwiftParser Nominals.swift
[463/525] Compiling SwiftParser Parameters.swift
[464/525] Compiling SwiftParser ParseSourceFile.swift
[465/525] Compiling SwiftParser Parser.swift
[466/525] Compiling SwiftParser Patterns.swift
[467/525] Compiling SwiftParser Recovery.swift
[468/525] Compiling SwiftParser Specifiers.swift
[469/525] Compiling SwiftParser Statements.swift
[470/525] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[471/530] Compiling SwiftParser StringLiterals.swift
[472/530] Compiling SwiftParser SwiftParserCompatibility.swift
[473/530] Compiling SwiftParser SwiftVersion.swift
[474/530] Compiling SwiftParser SyntaxUtils.swift
[475/530] Compiling SwiftParser TokenConsumer.swift
[476/530] Compiling SwiftParser TokenPrecedence.swift
[477/530] Compiling SwiftParser TokenSpec.swift
[478/530] Compiling SwiftParser TokenSpecSet.swift
[479/530] Compiling SwiftParser TopLevel.swift
[480/530] Compiling SwiftParser TriviaParser.swift
[481/530] Compiling SwiftParser Types.swift
[486/530] Compiling SwiftParser CompilerFiles.swift
[487/530] Compiling SwiftParser Declarations.swift
[488/530] Emitting module SwiftParser
[489/530] Compiling SwiftParser Directives.swift
[490/530] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[491/530] Compiling SwiftParser Expressions.swift
[492/530] Compiling SwiftParser IncrementalParseTransition.swift
[493/530] Compiling SwiftParser IsValidIdentifier.swift
[494/530] Compiling SwiftParser Cursor.swift
[495/530] Compiling SwiftParser ExperimentalFeatures.swift
[496/530] Compiling SwiftParser IsLexerClassified.swift
[497/530] Compiling SwiftParser LayoutNodes+Parsable.swift
[498/530] Compiling SwiftParser Parser+TokenSpecSet.swift
[499/530] Compiling SwiftParser TokenSpecStaticMembers.swift
[501/553] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[502/554] Compiling SwiftOperators OperatorError.swift
[503/554] Compiling SwiftOperators OperatorTable+Defaults.swift
[504/555] Compiling SwiftOperators OperatorTable.swift
[505/555] Compiling SwiftOperators PrecedenceGraph.swift
[506/555] Compiling SwiftOperators PrecedenceGroup.swift
[507/555] Compiling SwiftOperators Operator.swift
[508/555] Compiling SwiftOperators OperatorError+Diagnostics.swift
[509/555] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[510/555] Compiling SwiftOperators SyntaxSynthesis.swift
[511/555] Emitting module SwiftOperators
[512/555] Compiling SwiftOperators OperatorTable+Semantics.swift
[513/555] Compiling SwiftOperators OperatorTable+Folding.swift
[517/556] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[518/555] Emitting module SwiftParserDiagnostics
[519/555] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[520/555] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[521/555] Compiling SwiftParserDiagnostics MissingNodesError.swift
[522/555] Compiling SwiftParserDiagnostics MissingTokenError.swift
[523/555] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[524/555] Compiling SwiftParserDiagnostics PresenceUtils.swift
[528/570] Compiling SwiftSyntaxBuilder Indenter.swift
[529/570] Compiling SwiftSyntaxBuilder ListBuilder.swift
[530/571] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[531/571] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[532/571] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[533/571] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[534/571] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[535/571] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[536/571] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[537/571] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[538/571] Emitting module SwiftSyntaxBuilder
[539/571] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[540/571] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[541/571] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[542/571] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[543/571] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[554/630] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[555/630] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[556/714] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[557/714] Compiling SwiftBasicFormat Syntax+Extensions.swift
[558/714] Compiling SwiftFormat Configuration.swift
[559/714] Compiling SwiftFormat DebugOptions.swift
[560/714] Compiling SwiftDiagnostics Note.swift
[561/714] Compiling SwiftDiagnostics Message.swift
[562/714] Emitting module SwiftDiagnostics
[563/714] Compiling SwiftFormat Configuration+Default.swift
[564/714] Compiling SwiftFormat Configuration+Dump.swift
[565/714] Compiling SwiftBasicFormat InferIndentation.swift
[566/714] Compiling SwiftDiagnostics FixIt.swift
[567/714] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[568/714] Compiling SwiftBasicFormat Indenter.swift
[569/714] Emitting module SwiftBasicFormat
[570/714] Compiling SwiftBasicFormat BasicFormat.swift
[572/715] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[574/714] Emitting module SwiftParser
[575/719] Compiling SwiftFormat NoParensAroundConditions.swift
[576/719] Compiling SwiftFormat NoPlaygroundLiterals.swift
[577/719] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[578/719] Compiling SwiftFormat OmitExplicitReturns.swift
[579/719] Compiling SwiftFormat OneCasePerLine.swift
[580/719] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[581/719] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[582/719] Compiling SwiftFormat OrderedImports.swift
[583/719] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[584/719] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[585/719] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[586/719] Compiling SwiftFormat NeverForceUnwrap.swift
[587/719] Compiling SwiftFormat NeverUseForceTry.swift
[588/719] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[589/719] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[590/719] Compiling SwiftFormat NoAssignmentInExpressions.swift
[591/719] Compiling SwiftFormat NoBlockComments.swift
[592/719] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[593/719] Compiling SwiftFormat NoEmptyLineOpeningClosingBraces.swift
[594/719] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[595/719] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[596/719] Compiling SwiftFormat NoLeadingUnderscores.swift
[597/730] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[598/730] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[599/730] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[600/730] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[601/730] Compiling SwiftFormat AvoidRetroactiveConformances.swift
[602/730] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[603/730] Compiling SwiftFormat DoNotUseSemicolons.swift
[604/730] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[605/730] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[606/730] Compiling SwiftFormat FullyIndirectEnum.swift
[607/730] Compiling SwiftFormat GroupNumericLiterals.swift
[608/730] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[609/730] Compiling SwiftFormat RuleState.swift
[610/730] Compiling SwiftFormat SyntaxFormatRule.swift
[611/730] Compiling SwiftFormat SyntaxLintRule.swift
[612/730] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[613/730] Compiling SwiftFormat SyntaxTraits.swift
[614/730] Compiling SwiftFormat Trivia+Convenience.swift
[615/730] Compiling SwiftFormat WithAttributesSyntax+Convenience.swift
[616/730] Compiling SwiftFormat WithSemicolonSyntax.swift
[617/730] Compiling SwiftFormat Comment.swift
[618/730] Compiling SwiftFormat Indent+Length.swift
[619/730] Compiling SwiftFormat PrettyPrint.swift
[620/730] Compiling SwiftFormat ImportsXCTestVisitor.swift
[621/730] Compiling SwiftFormat LazySplitSequence.swift
[622/730] Compiling SwiftFormat LintPipeline.swift
[623/730] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[624/730] Compiling SwiftFormat Parsing.swift
[625/730] Compiling SwiftFormat Pipelines+Generated.swift
[626/730] Compiling SwiftFormat DocumentationComment.swift
[627/730] Compiling SwiftFormat DocumentationCommentText.swift
[628/730] Compiling SwiftFormat Finding+Convenience.swift
[629/730] Compiling SwiftFormat FindingEmitter.swift
[630/730] Compiling SwiftFormat FormatPipeline.swift
[631/730] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[632/730] Compiling SwiftFormat RememberingIterator.swift
[633/730] Compiling SwiftFormat Rule.swift
[634/730] Compiling SwiftFormat RuleBasedFindingCategory.swift
[635/730] Compiling SwiftFormat RuleMask.swift
[636/730] Compiling SwiftFormat RuleNameCache+Generated.swift
[637/730] Compiling SwiftFormat RuleRegistry+Generated.swift
[638/730] Compiling SwiftFormat UseEarlyExits.swift
[639/730] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[640/730] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[641/730] Compiling SwiftFormat UseShorthandTypeNames.swift
[642/730] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[643/730] Compiling SwiftFormat UseSynthesizedInitializer.swift
[644/730] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[645/730] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[646/730] Compiling SwiftFormat ValidateDocumentationComments.swift
[647/730] Compiling SwiftFormat FileIterator.swift
[648/730] Compiling SwiftFormat URL+isRoot.swift
[653/730] Compiling SwiftFormat Finding.swift
[654/730] Compiling SwiftFormat FindingCategorizing.swift
[655/730] Compiling SwiftFormat Indent.swift
[656/730] Compiling SwiftFormat Selection.swift
[657/730] Compiling SwiftFormat SwiftFormatError.swift
[658/730] Compiling SwiftFormat SwiftFormatter.swift
[659/730] Compiling SwiftFormat SwiftLinter.swift
[660/730] Compiling SwiftFormat Context.swift
[666/730] Compiling SwiftParser ExperimentalFeatures.swift
[667/730] Compiling SwiftParser IsLexerClassified.swift
[668/730] Compiling SwiftParser LayoutNodes+Parsable.swift
[669/730] Compiling SwiftParser Parser+TokenSpecSet.swift
[670/730] Compiling SwiftParser TokenSpecStaticMembers.swift
[671/730] Compiling SwiftFormat WhitespaceFindingCategory.swift
[672/730] Compiling SwiftFormat WhitespaceLinter.swift
[714/731] Emitting module SwiftFormat
[716/731] Wrapping AST for SwiftFormat for debugging
[718/771] Compiling SwiftOperators PrecedenceGraph.swift
[719/772] Compiling SwiftOperators OperatorTable.swift
[720/772] Compiling SwiftOperators OperatorTable+Semantics.swift
[721/772] Compiling SwiftOperators PrecedenceGroup.swift
[722/772] Compiling SwiftOperators SyntaxSynthesis.swift
[723/772] Compiling swift_format FileHandleTextOutputStream.swift
[724/772] Compiling swift_format StderrDiagnosticPrinter.swift
[725/774] Emitting module swift_format
[726/774] Compiling swift_format Diagnostic.swift
[727/774] Compiling swift_format DiagnosticsEngine.swift
[728/774] Compiling swift_format PerformanceMeasurement.swift
[729/774] Compiling swift_format SwiftFormatCommand.swift
[730/774] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[731/775] Compiling SwiftOperators OperatorTable+Folding.swift
[732/775] Compiling swift_format ConfigurationLoader.swift
[733/775] Compiling swift_format FormatFrontend.swift
[734/775] Compiling swift_format Frontend.swift
[735/775] Compiling swift_format LintFrontend.swift
[736/775] Emitting module SwiftOperators
[737/776] Compiling swift_format Lint.swift
[738/776] Compiling swift_format LintFormatOptions.swift
[739/776] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[740/776] Compiling swift_format TTY.swift
[741/776] Compiling swift_format VersionOptions.swift
[744/776] Compiling swift_format PrintVersion.swift
[745/776] Compiling swift_format ConfigurationOptions.swift
[746/776] Compiling swift_format DumpConfiguration.swift
[747/776] Compiling swift_format Format.swift
[751/776] Wrapping AST for swift-format for debugging
[752/776] Write Objects.LinkFileList
[756/776] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[757/776] Emitting module SwiftParserDiagnostics
[759/776] Linking swift-format-tool
[768/791] Compiling SwiftSyntaxBuilder Indenter.swift
[769/791] Compiling SwiftSyntaxBuilder ListBuilder.swift
[770/791] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[771/791] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[772/792] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[773/792] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[774/792] Emitting module SwiftSyntaxBuilder
[775/792] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[776/792] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[777/792] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[778/792] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[779/792] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[780/792] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[781/792] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[782/792] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[783/792] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[785/875] Compiling SwiftFormat RememberingIterator.swift
[786/875] Compiling SwiftFormat Rule.swift
[787/875] Compiling SwiftFormat RuleBasedFindingCategory.swift
[788/875] Compiling SwiftFormat RuleMask.swift
[789/875] Compiling SwiftFormat RuleNameCache+Generated.swift
[790/875] Compiling SwiftFormat RuleRegistry+Generated.swift
[791/875] Compiling SwiftFormat RuleState.swift
[792/875] Compiling SwiftFormat SyntaxFormatRule.swift
[793/875] Compiling SwiftFormat SyntaxLintRule.swift
[794/875] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[795/875] Compiling SwiftFormat SyntaxTraits.swift
[796/875] Compiling SwiftFormat Trivia+Convenience.swift
[797/886] Emitting module SwiftFormat
[798/886] Compiling SwiftFormat Configuration+Default.swift
[799/886] Compiling SwiftFormat Configuration+Dump.swift
[800/886] Compiling SwiftFormat Configuration.swift
[801/886] Compiling SwiftFormat DebugOptions.swift
[802/886] Compiling SwiftFormat Finding.swift
[803/886] Compiling SwiftFormat FindingCategorizing.swift
[804/886] Compiling SwiftFormat Indent.swift
[805/886] Compiling SwiftFormat Selection.swift
[806/886] Compiling SwiftFormat SwiftFormatError.swift
[807/886] Compiling SwiftFormat SwiftFormatter.swift
[808/886] Compiling SwiftFormat SwiftLinter.swift
[809/886] Compiling SwiftFormat Context.swift
[810/886] Compiling SwiftFormat NeverForceUnwrap.swift
[811/886] Compiling SwiftFormat NeverUseForceTry.swift
[812/886] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[813/886] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[814/886] Compiling SwiftFormat NoAssignmentInExpressions.swift
[815/886] Compiling SwiftFormat NoBlockComments.swift
[816/886] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[817/886] Compiling SwiftFormat NoEmptyLineOpeningClosingBraces.swift
[818/886] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[819/886] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[820/886] Compiling SwiftFormat NoLeadingUnderscores.swift
[821/886] Compiling SwiftFormat UseEarlyExits.swift
[822/886] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[823/886] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[824/886] Compiling SwiftFormat UseShorthandTypeNames.swift
[825/886] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[826/886] Compiling SwiftFormat UseSynthesizedInitializer.swift
[827/886] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[828/886] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[829/886] Compiling SwiftFormat ValidateDocumentationComments.swift
[830/886] Compiling SwiftFormat FileIterator.swift
[831/886] Compiling SwiftFormat URL+isRoot.swift
[832/886] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[833/886] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[834/886] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[835/886] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[836/886] Compiling SwiftFormat AvoidRetroactiveConformances.swift
[837/886] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[838/886] Compiling SwiftFormat DoNotUseSemicolons.swift
[839/886] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[840/886] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[841/886] Compiling SwiftFormat FullyIndirectEnum.swift
[842/886] Compiling SwiftFormat GroupNumericLiterals.swift
[843/886] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[844/886] Compiling SwiftFormat NoParensAroundConditions.swift
[845/886] Compiling SwiftFormat NoPlaygroundLiterals.swift
[846/886] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[847/886] Compiling SwiftFormat OmitExplicitReturns.swift
[848/886] Compiling SwiftFormat OneCasePerLine.swift
[849/886] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[850/886] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[851/886] Compiling SwiftFormat OrderedImports.swift
[852/886] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[853/886] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[854/886] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[855/886] Compiling SwiftFormat WithAttributesSyntax+Convenience.swift
[856/886] Compiling SwiftFormat WithSemicolonSyntax.swift
[857/886] Compiling SwiftFormat Comment.swift
[858/886] Compiling SwiftFormat Indent+Length.swift
[859/886] Compiling SwiftFormat PrettyPrint.swift
[860/886] Compiling SwiftFormat PrettyPrintBuffer.swift
[861/886] Compiling SwiftFormat PrettyPrintFindingCategory.swift
[862/886] Compiling SwiftFormat Token.swift
[863/886] Compiling SwiftFormat TokenStreamCreator.swift
[864/886] Compiling SwiftFormat Verbatim.swift
[865/886] Compiling SwiftFormat WhitespaceFindingCategory.swift
[866/886] Compiling SwiftFormat WhitespaceLinter.swift
[867/886] Compiling SwiftFormat DocumentationComment.swift
[868/886] Compiling SwiftFormat DocumentationCommentText.swift
[869/886] Compiling SwiftFormat Finding+Convenience.swift
[870/886] Compiling SwiftFormat FindingEmitter.swift
[871/886] Compiling SwiftFormat FormatPipeline.swift
[872/886] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[873/886] Compiling SwiftFormat ImportsXCTestVisitor.swift
[874/886] Compiling SwiftFormat LazySplitSequence.swift
[875/886] Compiling SwiftFormat LintPipeline.swift
[876/886] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[877/886] Compiling SwiftFormat Parsing.swift
[878/886] Compiling SwiftFormat Pipelines+Generated.swift
[879/887] Wrapping AST for SwiftFormat for debugging
error: emit-module command failed with exit code 1 (use -v to see invocation)
[881/913] 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 |
[882/920] 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 |
[883/920] 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 |
[884/920] 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 |
[885/920] 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 |
[886/920] 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 |
[887/920] 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 |
[888/920] 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 |
[889/920] 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 |
[890/920] 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 |
[891/920] 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 |
[892/920] 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 |
[893/920] 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 |
[894/920] 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 |
[895/920] 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 |
[896/920] 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 |
[897/920] 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 |
[898/920] 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 |
[899/920] 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 |
[900/920] Compiling _GenerateSwiftFormat GenerateSwiftFormatPaths.swift
[901/920] Compiling _GenerateSwiftFormat FileGenerator.swift
BUILD FAILURE 6.1 wasm