Build Information
Successful build of SwiftDocC, reference main (5ba143
), with Swift 6.1 for macOS (SPM) on 4 Sep 2025 01:45:43 UTC.
Swift 6 data race errors: 298
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "transform-for-static-hosting",
20 | abstract: "Transform an existing DocC Archive into one that supports a static hosting environment.")
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/Docc.swift:38:23: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | /// The default, command-line interface you use to compile and preview documentation.
37 | public struct Docc: AsyncParsableCommand {
38 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | abstract: "Documentation Compiler: compile, analyze, and preview documentation.",
40 | usage: usage,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/PreviewServer/PreviewHTTPHandler.swift:115:54: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
113 | if !self.keepAlive {
114 | // When we can update to Swift NIO 2.78.0 we can call `assumeIsolated()` on the future result and avoid this 'capture of non-sendable type' warning.
115 | promise.futureResult.whenComplete { _ in context.close(promise: nil) }
| `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
116 | }
117 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1456:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1454 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1455 | /// `ChannelHandler`.
1456 | public final class ChannelHandlerContext: ChannelInvoker {
| `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1457 | // visible for ChannelPipeline to modify
1458 | fileprivate var next: Optional<ChannelHandlerContext>
[1059/1088] Compiling SwiftDocCUtilities Docc.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/TransformForStaticHosting.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct TransformForStaticHosting: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "transform-for-static-hosting",
20 | abstract: "Transform an existing DocC Archive into one that supports a static hosting environment.")
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/Docc.swift:38:23: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | /// The default, command-line interface you use to compile and preview documentation.
37 | public struct Docc: AsyncParsableCommand {
38 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | abstract: "Documentation Compiler: compile, analyze, and preview documentation.",
40 | usage: usage,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/PreviewServer/PreviewHTTPHandler.swift:115:54: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
113 | if !self.keepAlive {
114 | // When we can update to Swift NIO 2.78.0 we can call `assumeIsolated()` on the future result and avoid this 'capture of non-sendable type' warning.
115 | promise.futureResult.whenComplete { _ in context.close(promise: nil) }
| `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
116 | }
117 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1456:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1454 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1455 | /// `ChannelHandler`.
1456 | public final class ChannelHandlerContext: ChannelInvoker {
| `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1457 | // visible for ChannelPipeline to modify
1458 | fileprivate var next: Optional<ChannelHandlerContext>
[1060/1088] Compiling SwiftDocCUtilities PreviewHTTPHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/TransformForStaticHosting.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct TransformForStaticHosting: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "transform-for-static-hosting",
20 | abstract: "Transform an existing DocC Archive into one that supports a static hosting environment.")
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/Docc.swift:38:23: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | /// The default, command-line interface you use to compile and preview documentation.
37 | public struct Docc: AsyncParsableCommand {
38 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | abstract: "Documentation Compiler: compile, analyze, and preview documentation.",
40 | usage: usage,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/PreviewServer/PreviewHTTPHandler.swift:115:54: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
113 | if !self.keepAlive {
114 | // When we can update to Swift NIO 2.78.0 we can call `assumeIsolated()` on the future result and avoid this 'capture of non-sendable type' warning.
115 | promise.futureResult.whenComplete { _ in context.close(promise: nil) }
| `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
116 | }
117 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1456:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1454 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1455 | /// `ChannelHandler`.
1456 | public final class ChannelHandlerContext: ChannelInvoker {
| `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1457 | // visible for ChannelPipeline to modify
1458 | fileprivate var next: Optional<ChannelHandlerContext>
[1061/1088] Compiling SwiftDocCUtilities PreviewServer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/TransformForStaticHosting.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct TransformForStaticHosting: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "transform-for-static-hosting",
20 | abstract: "Transform an existing DocC Archive into one that supports a static hosting environment.")
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/Docc.swift:38:23: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | /// The default, command-line interface you use to compile and preview documentation.
37 | public struct Docc: AsyncParsableCommand {
38 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | abstract: "Documentation Compiler: compile, analyze, and preview documentation.",
40 | usage: usage,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/PreviewServer/PreviewHTTPHandler.swift:115:54: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
113 | if !self.keepAlive {
114 | // When we can update to Swift NIO 2.78.0 we can call `assumeIsolated()` on the future result and avoid this 'capture of non-sendable type' warning.
115 | promise.futureResult.whenComplete { _ in context.close(promise: nil) }
| `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
116 | }
117 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1456:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1454 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1455 | /// `ChannelHandler`.
1456 | public final class ChannelHandlerContext: ChannelInvoker {
| `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1457 | // visible for ChannelPipeline to modify
1458 | fileprivate var next: Optional<ChannelHandlerContext>
[1062/1088] Compiling SwiftDocCUtilities DefaultRequestHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/TransformForStaticHosting.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct TransformForStaticHosting: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "transform-for-static-hosting",
20 | abstract: "Transform an existing DocC Archive into one that supports a static hosting environment.")
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/Docc.swift:38:23: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | /// The default, command-line interface you use to compile and preview documentation.
37 | public struct Docc: AsyncParsableCommand {
38 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | abstract: "Documentation Compiler: compile, analyze, and preview documentation.",
40 | usage: usage,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/PreviewServer/PreviewHTTPHandler.swift:115:54: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
113 | if !self.keepAlive {
114 | // When we can update to Swift NIO 2.78.0 we can call `assumeIsolated()` on the future result and avoid this 'capture of non-sendable type' warning.
115 | promise.futureResult.whenComplete { _ in context.close(promise: nil) }
| `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
116 | }
117 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1456:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1454 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1455 | /// `ChannelHandler`.
1456 | public final class ChannelHandlerContext: ChannelInvoker {
| `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1457 | // visible for ChannelPipeline to modify
1458 | fileprivate var next: Optional<ChannelHandlerContext>
[1063/1088] Compiling SwiftDocCUtilities ErrorRequestHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/TransformForStaticHosting.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct TransformForStaticHosting: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "transform-for-static-hosting",
20 | abstract: "Transform an existing DocC Archive into one that supports a static hosting environment.")
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/Docc.swift:38:23: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | /// The default, command-line interface you use to compile and preview documentation.
37 | public struct Docc: AsyncParsableCommand {
38 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | abstract: "Documentation Compiler: compile, analyze, and preview documentation.",
40 | usage: usage,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/PreviewServer/PreviewHTTPHandler.swift:115:54: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
113 | if !self.keepAlive {
114 | // When we can update to Swift NIO 2.78.0 we can call `assumeIsolated()` on the future result and avoid this 'capture of non-sendable type' warning.
115 | promise.futureResult.whenComplete { _ in context.close(promise: nil) }
| `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a '@Sendable' closure
116 | }
117 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1456:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1454 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1455 | /// `ChannelHandler`.
1456 | public final class ChannelHandlerContext: ChannelInvoker {
| `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1457 | // visible for ChannelPipeline to modify
1458 | fileprivate var next: Optional<ChannelHandlerContext>
[1064/1088] Compiling SwiftDocCUtilities URLArgumentValidator.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:21:28: warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 | /// These options are used by the ``Docc/Convert`` subcommand.
18 | public struct DocumentationCoverageOptionsArgument: ParsableArguments {
| `- note: consider making struct 'DocumentationCoverageOptionsArgument' conform to the 'Sendable' protocol
19 | public init() {}
20 |
21 | fileprivate static let noCoverage = DocumentationCoverageOptionsArgument()
| |- warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'noCoverage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // The way the '--experimental-documentation-coverage' flag and the '--coverage-summary-level' option work together
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:87:21: warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
85 | public init(from arguments: DocumentationCoverageOptionsArgument) {
86 | guard arguments.experimentalDocumentationCoverage else {
87 | self = .noCoverage
| `- warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
88 | return
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocC/Coverage/DocumentationCoverageOptions.swift:30:23: note: static property declared here
28 |
29 | /// An instance configured to represent the choice not to produce any documentation coverage artifacts or output.
30 | public static var noCoverage: DocumentationCoverageOptions = DocumentationCoverageOptions(
| `- note: static property declared here
31 | level: .none,
32 | kindFilterOptions: [])
[1065/1088] Compiling SwiftDocCUtilities DirectoryPathOption.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:21:28: warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 | /// These options are used by the ``Docc/Convert`` subcommand.
18 | public struct DocumentationCoverageOptionsArgument: ParsableArguments {
| `- note: consider making struct 'DocumentationCoverageOptionsArgument' conform to the 'Sendable' protocol
19 | public init() {}
20 |
21 | fileprivate static let noCoverage = DocumentationCoverageOptionsArgument()
| |- warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'noCoverage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // The way the '--experimental-documentation-coverage' flag and the '--coverage-summary-level' option work together
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:87:21: warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
85 | public init(from arguments: DocumentationCoverageOptionsArgument) {
86 | guard arguments.experimentalDocumentationCoverage else {
87 | self = .noCoverage
| `- warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
88 | return
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocC/Coverage/DocumentationCoverageOptions.swift:30:23: note: static property declared here
28 |
29 | /// An instance configured to represent the choice not to produce any documentation coverage artifacts or output.
30 | public static var noCoverage: DocumentationCoverageOptions = DocumentationCoverageOptions(
| `- note: static property declared here
31 | level: .none,
32 | kindFilterOptions: [])
[1066/1088] Compiling SwiftDocCUtilities DocumentationArchiveOption.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:21:28: warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 | /// These options are used by the ``Docc/Convert`` subcommand.
18 | public struct DocumentationCoverageOptionsArgument: ParsableArguments {
| `- note: consider making struct 'DocumentationCoverageOptionsArgument' conform to the 'Sendable' protocol
19 | public init() {}
20 |
21 | fileprivate static let noCoverage = DocumentationCoverageOptionsArgument()
| |- warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'noCoverage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // The way the '--experimental-documentation-coverage' flag and the '--coverage-summary-level' option work together
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:87:21: warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
85 | public init(from arguments: DocumentationCoverageOptionsArgument) {
86 | guard arguments.experimentalDocumentationCoverage else {
87 | self = .noCoverage
| `- warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
88 | return
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocC/Coverage/DocumentationCoverageOptions.swift:30:23: note: static property declared here
28 |
29 | /// An instance configured to represent the choice not to produce any documentation coverage artifacts or output.
30 | public static var noCoverage: DocumentationCoverageOptions = DocumentationCoverageOptions(
| `- note: static property declared here
31 | level: .none,
32 | kindFilterOptions: [])
[1067/1088] Compiling SwiftDocCUtilities DocumentationBundleOption.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:21:28: warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 | /// These options are used by the ``Docc/Convert`` subcommand.
18 | public struct DocumentationCoverageOptionsArgument: ParsableArguments {
| `- note: consider making struct 'DocumentationCoverageOptionsArgument' conform to the 'Sendable' protocol
19 | public init() {}
20 |
21 | fileprivate static let noCoverage = DocumentationCoverageOptionsArgument()
| |- warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'noCoverage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // The way the '--experimental-documentation-coverage' flag and the '--coverage-summary-level' option work together
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:87:21: warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
85 | public init(from arguments: DocumentationCoverageOptionsArgument) {
86 | guard arguments.experimentalDocumentationCoverage else {
87 | self = .noCoverage
| `- warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
88 | return
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocC/Coverage/DocumentationCoverageOptions.swift:30:23: note: static property declared here
28 |
29 | /// An instance configured to represent the choice not to produce any documentation coverage artifacts or output.
30 | public static var noCoverage: DocumentationCoverageOptions = DocumentationCoverageOptions(
| `- note: static property declared here
31 | level: .none,
32 | kindFilterOptions: [])
[1068/1088] Compiling SwiftDocCUtilities DocumentationCoverageOptionsArgument.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:21:28: warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 | /// These options are used by the ``Docc/Convert`` subcommand.
18 | public struct DocumentationCoverageOptionsArgument: ParsableArguments {
| `- note: consider making struct 'DocumentationCoverageOptionsArgument' conform to the 'Sendable' protocol
19 | public init() {}
20 |
21 | fileprivate static let noCoverage = DocumentationCoverageOptionsArgument()
| |- warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'noCoverage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // The way the '--experimental-documentation-coverage' flag and the '--coverage-summary-level' option work together
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:87:21: warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
85 | public init(from arguments: DocumentationCoverageOptionsArgument) {
86 | guard arguments.experimentalDocumentationCoverage else {
87 | self = .noCoverage
| `- warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
88 | return
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocC/Coverage/DocumentationCoverageOptions.swift:30:23: note: static property declared here
28 |
29 | /// An instance configured to represent the choice not to produce any documentation coverage artifacts or output.
30 | public static var noCoverage: DocumentationCoverageOptions = DocumentationCoverageOptions(
| `- note: static property declared here
31 | level: .none,
32 | kindFilterOptions: [])
[1069/1088] Compiling SwiftDocCUtilities InitOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:21:28: warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
16 | ///
17 | /// These options are used by the ``Docc/Convert`` subcommand.
18 | public struct DocumentationCoverageOptionsArgument: ParsableArguments {
| `- note: consider making struct 'DocumentationCoverageOptionsArgument' conform to the 'Sendable' protocol
19 | public init() {}
20 |
21 | fileprivate static let noCoverage = DocumentationCoverageOptionsArgument()
| |- warning: static property 'noCoverage' is not concurrency-safe because non-'Sendable' type 'DocumentationCoverageOptionsArgument' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'noCoverage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // The way the '--experimental-documentation-coverage' flag and the '--coverage-summary-level' option work together
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift:87:21: warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
85 | public init(from arguments: DocumentationCoverageOptionsArgument) {
86 | guard arguments.experimentalDocumentationCoverage else {
87 | self = .noCoverage
| `- warning: reference to static property 'noCoverage' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
88 | return
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocC/Coverage/DocumentationCoverageOptions.swift:30:23: note: static property declared here
28 |
29 | /// An instance configured to represent the choice not to produce any documentation coverage artifacts or output.
30 | public static var noCoverage: DocumentationCoverageOptions = DocumentationCoverageOptions(
| `- note: static property declared here
31 | level: .none,
32 | kindFilterOptions: [])
[1070/1088] Compiling SwiftDocCUtilities OutOfProcessLinkResolverOption.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/TemplateOption.swift:30:16: warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// The location of the docc executable that's running.
29 | /// This can be set to a known value for testing.
30 | static var doccExecutableLocation: URL = {
| |- warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'doccExecutableLocation' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'doccExecutableLocation' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | // We rely on Bundle.main.executableURL here which is a robust API
32 | // that should always return the current executable's URL, regardless of how it is invoked.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:26:20: warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 | ///
25 | /// Provided as a static variable to allow for redirecting output in unit tests.
26 | static var _errorLogHandle: LogHandle = .standardError
| |- warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_errorLogHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_errorLogHandle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:28:20: warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | static var _errorLogHandle: LogHandle = .standardError
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
| |- warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_diagnosticFormattingOptions' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_diagnosticFormattingOptions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | public static var configuration = CommandConfiguration(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:30:27: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
29 |
30 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | abstract: "Convert documentation markup, assets, and symbol information into a documentation archive.",
32 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/EmitGeneratedCuration.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct EmitGeneratedCuration: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "emit-generated-curation",
20 | abstract: "Write documentation extension files with markdown representations of DocC's automatic curation.",
[1071/1088] Compiling SwiftDocCUtilities PreviewOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/TemplateOption.swift:30:16: warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// The location of the docc executable that's running.
29 | /// This can be set to a known value for testing.
30 | static var doccExecutableLocation: URL = {
| |- warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'doccExecutableLocation' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'doccExecutableLocation' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | // We rely on Bundle.main.executableURL here which is a robust API
32 | // that should always return the current executable's URL, regardless of how it is invoked.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:26:20: warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 | ///
25 | /// Provided as a static variable to allow for redirecting output in unit tests.
26 | static var _errorLogHandle: LogHandle = .standardError
| |- warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_errorLogHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_errorLogHandle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:28:20: warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | static var _errorLogHandle: LogHandle = .standardError
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
| |- warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_diagnosticFormattingOptions' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_diagnosticFormattingOptions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | public static var configuration = CommandConfiguration(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:30:27: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
29 |
30 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | abstract: "Convert documentation markup, assets, and symbol information into a documentation archive.",
32 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/EmitGeneratedCuration.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct EmitGeneratedCuration: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "emit-generated-curation",
20 | abstract: "Write documentation extension files with markdown representations of DocC's automatic curation.",
[1072/1088] Compiling SwiftDocCUtilities SourceRepositoryArguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/TemplateOption.swift:30:16: warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// The location of the docc executable that's running.
29 | /// This can be set to a known value for testing.
30 | static var doccExecutableLocation: URL = {
| |- warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'doccExecutableLocation' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'doccExecutableLocation' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | // We rely on Bundle.main.executableURL here which is a robust API
32 | // that should always return the current executable's URL, regardless of how it is invoked.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:26:20: warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 | ///
25 | /// Provided as a static variable to allow for redirecting output in unit tests.
26 | static var _errorLogHandle: LogHandle = .standardError
| |- warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_errorLogHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_errorLogHandle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:28:20: warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | static var _errorLogHandle: LogHandle = .standardError
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
| |- warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_diagnosticFormattingOptions' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_diagnosticFormattingOptions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | public static var configuration = CommandConfiguration(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:30:27: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
29 |
30 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | abstract: "Convert documentation markup, assets, and symbol information into a documentation archive.",
32 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/EmitGeneratedCuration.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct EmitGeneratedCuration: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "emit-generated-curation",
20 | abstract: "Write documentation extension files with markdown representations of DocC's automatic curation.",
[1073/1088] Compiling SwiftDocCUtilities TemplateOption.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/TemplateOption.swift:30:16: warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// The location of the docc executable that's running.
29 | /// This can be set to a known value for testing.
30 | static var doccExecutableLocation: URL = {
| |- warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'doccExecutableLocation' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'doccExecutableLocation' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | // We rely on Bundle.main.executableURL here which is a robust API
32 | // that should always return the current executable's URL, regardless of how it is invoked.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:26:20: warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 | ///
25 | /// Provided as a static variable to allow for redirecting output in unit tests.
26 | static var _errorLogHandle: LogHandle = .standardError
| |- warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_errorLogHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_errorLogHandle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:28:20: warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | static var _errorLogHandle: LogHandle = .standardError
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
| |- warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_diagnosticFormattingOptions' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_diagnosticFormattingOptions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | public static var configuration = CommandConfiguration(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:30:27: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
29 |
30 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | abstract: "Convert documentation markup, assets, and symbol information into a documentation archive.",
32 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/EmitGeneratedCuration.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct EmitGeneratedCuration: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "emit-generated-curation",
20 | abstract: "Write documentation extension files with markdown representations of DocC's automatic curation.",
[1074/1088] Compiling SwiftDocCUtilities Convert.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/TemplateOption.swift:30:16: warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// The location of the docc executable that's running.
29 | /// This can be set to a known value for testing.
30 | static var doccExecutableLocation: URL = {
| |- warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'doccExecutableLocation' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'doccExecutableLocation' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | // We rely on Bundle.main.executableURL here which is a robust API
32 | // that should always return the current executable's URL, regardless of how it is invoked.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:26:20: warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 | ///
25 | /// Provided as a static variable to allow for redirecting output in unit tests.
26 | static var _errorLogHandle: LogHandle = .standardError
| |- warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_errorLogHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_errorLogHandle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:28:20: warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | static var _errorLogHandle: LogHandle = .standardError
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
| |- warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_diagnosticFormattingOptions' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_diagnosticFormattingOptions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | public static var configuration = CommandConfiguration(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:30:27: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
29 |
30 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | abstract: "Convert documentation markup, assets, and symbol information into a documentation archive.",
32 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/EmitGeneratedCuration.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct EmitGeneratedCuration: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "emit-generated-curation",
20 | abstract: "Write documentation extension files with markdown representations of DocC's automatic curation.",
[1075/1088] Compiling SwiftDocCUtilities EmitGeneratedCuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Options/TemplateOption.swift:30:16: warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// The location of the docc executable that's running.
29 | /// This can be set to a known value for testing.
30 | static var doccExecutableLocation: URL = {
| |- warning: static property 'doccExecutableLocation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'doccExecutableLocation' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'doccExecutableLocation' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | // We rely on Bundle.main.executableURL here which is a robust API
32 | // that should always return the current executable's URL, regardless of how it is invoked.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:26:20: warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 | ///
25 | /// Provided as a static variable to allow for redirecting output in unit tests.
26 | static var _errorLogHandle: LogHandle = .standardError
| |- warning: static property '_errorLogHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_errorLogHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_errorLogHandle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:28:20: warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | static var _errorLogHandle: LogHandle = .standardError
27 |
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
| |- warning: static property '_diagnosticFormattingOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_diagnosticFormattingOptions' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_diagnosticFormattingOptions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | public static var configuration = CommandConfiguration(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Convert.swift:30:27: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | static var _diagnosticFormattingOptions: DiagnosticFormattingOptions = []
29 |
30 | public static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | abstract: "Convert documentation markup, assets, and symbol information into a documentation archive.",
32 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/EmitGeneratedCuration.swift:18:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct EmitGeneratedCuration: AsyncParsableCommand {
17 |
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "emit-generated-curation",
20 | abstract: "Write documentation extension files with markdown representations of DocC's automatic curation.",
[1075/1092] Linking generate-symbol-graph
[1077/1092] Emitting module docc
[1078/1092] Compiling docc main.swift
[1079/1092] Emitting module signal_test_app
[1080/1092] Compiling signal_test_app main.swift
[1080/1092] Applying generate-symbol-graph
[1081/1092] Write Objects.LinkFileList
[1083/1092] Linking docc
[1084/1092] Linking signal-test-app
[1085/1092] Applying docc
[1086/1092] Applying signal-test-app
[1088/1092] Emitting module SwiftDocCTestUtilities
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCTestUtilities/SymbolGraphCreation.swift:188:13: warning: let 'defaultSymbolPosition' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.LineList.SourceRange.Position' may have shared mutable state; this is an error in the Swift 6 language mode
186 | // MARK: Constants
187 |
188 | private let defaultSymbolPosition = SymbolGraph.LineList.SourceRange.Position(line: 11, character: 17) // an arbitrary non-zero start position
| `- warning: let 'defaultSymbolPosition' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.LineList.SourceRange.Position' may have shared mutable state; this is an error in the Swift 6 language mode
189 | private let defaultSymbolURL = URL(fileURLWithPath: "/Users/username/path/to/SomeFile.swift")
190 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-docc-symbolkit/Sources/SymbolKit/SymbolGraph/LineList/SourceRange/Position.swift:17:19: note: struct 'Position' does not conform to the 'Sendable' protocol
15 | Represents a cursor position in text.
16 | */
17 | public struct Position: Equatable, Codable {
| `- note: struct 'Position' does not conform to the 'Sendable' protocol
18 | /**
19 | The zero-based line number of a document.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCTestUtilities/SymbolGraphCreation.swift:14:9: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SymbolKit'
12 | import Foundation
13 | public import XCTest
14 | package import SymbolKit
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SymbolKit'
15 | package import SwiftDocC
16 |
:
186 | // MARK: Constants
187 |
188 | private let defaultSymbolPosition = SymbolGraph.LineList.SourceRange.Position(line: 11, character: 17) // an arbitrary non-zero start position
| |- note: add '@MainActor' to make let 'defaultSymbolPosition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | private let defaultSymbolURL = URL(fileURLWithPath: "/Users/username/path/to/SomeFile.swift")
190 |
[1089/1092] Compiling SwiftDocCTestUtilities SymbolGraphCreation.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCTestUtilities/SymbolGraphCreation.swift:188:13: warning: let 'defaultSymbolPosition' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.LineList.SourceRange.Position' may have shared mutable state; this is an error in the Swift 6 language mode
186 | // MARK: Constants
187 |
188 | private let defaultSymbolPosition = SymbolGraph.LineList.SourceRange.Position(line: 11, character: 17) // an arbitrary non-zero start position
| `- warning: let 'defaultSymbolPosition' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.LineList.SourceRange.Position' may have shared mutable state; this is an error in the Swift 6 language mode
189 | private let defaultSymbolURL = URL(fileURLWithPath: "/Users/username/path/to/SomeFile.swift")
190 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-docc-symbolkit/Sources/SymbolKit/SymbolGraph/LineList/SourceRange/Position.swift:17:19: note: struct 'Position' does not conform to the 'Sendable' protocol
15 | Represents a cursor position in text.
16 | */
17 | public struct Position: Equatable, Codable {
| `- note: struct 'Position' does not conform to the 'Sendable' protocol
18 | /**
19 | The zero-based line number of a document.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCTestUtilities/SymbolGraphCreation.swift:14:9: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SymbolKit'
12 | import Foundation
13 | public import XCTest
14 | package import SymbolKit
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SymbolKit'
15 | package import SwiftDocC
16 |
:
186 | // MARK: Constants
187 |
188 | private let defaultSymbolPosition = SymbolGraph.LineList.SourceRange.Position(line: 11, character: 17) // an arbitrary non-zero start position
| |- note: add '@MainActor' to make let 'defaultSymbolPosition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | private let defaultSymbolURL = URL(fileURLWithPath: "/Users/username/path/to/SomeFile.swift")
190 |
[1090/1092] Compiling SwiftDocCTestUtilities XCTestCase+TemporaryDirectory.swift
[1091/1092] Compiling SwiftDocCTestUtilities TestFileSystem.swift
[1092/1092] Compiling SwiftDocCTestUtilities FilesAndFolders.swift
Build complete! (44.31s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.53.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-markdown",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-markdown.git"
},
{
"identity" : "swift-lmdb",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-lmdb.git"
},
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser.git"
},
{
"identity" : "swift-docc-symbolkit",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-docc-symbolkit.git"
},
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "3.0.0",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-docc-plugin.git"
}
],
"manifest_display_name" : "SwiftDocC",
"name" : "SwiftDocC",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
}
],
"products" : [
{
"name" : "SwiftDocC",
"targets" : [
"SwiftDocC"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "docc",
"targets" : [
"docc"
],
"type" : {
"executable" : null
}
},
{
"name" : "signal-test-app",
"targets" : [
"signal-test-app"
],
"type" : {
"executable" : null
}
},
{
"name" : "generate-symbol-graph",
"targets" : [
"generate-symbol-graph"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "signal_test_app",
"module_type" : "SwiftTarget",
"name" : "signal-test-app",
"path" : "Tests/signal-test-app",
"product_memberships" : [
"signal-test-app"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"SwiftDocCUtilities"
],
"type" : "executable"
},
{
"c99name" : "generate_symbol_graph",
"module_type" : "SwiftTarget",
"name" : "generate-symbol-graph",
"path" : "Sources/generate-symbol-graph",
"product_dependencies" : [
"SymbolKit"
],
"product_memberships" : [
"generate-symbol-graph"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"SwiftDocC"
],
"type" : "executable"
},
{
"c99name" : "docc",
"module_type" : "SwiftTarget",
"name" : "docc",
"path" : "Sources/docc",
"product_memberships" : [
"docc"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"SwiftDocCUtilities"
],
"type" : "executable"
},
{
"c99name" : "SwiftDocCUtilitiesTests",
"module_type" : "SwiftTarget",
"name" : "SwiftDocCUtilitiesTests",
"path" : "Tests/SwiftDocCUtilitiesTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftDocCUtilitiesTests/Test Bundles",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftDocCUtilitiesTests/Test Resources",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"ArgumentParsing/ConvertSubcommandSourceRepositoryTests.swift",
"ArgumentParsing/ConvertSubcommandTests.swift",
"ArgumentParsing/DocumentationCoverageKindFilterOptionsTests.swift",
"ArgumentParsing/ErrorMessageTests.swift",
"ArgumentParsing/MergeSubcommandTests.swift",
"ArgumentParsing/PreviewSubcommandTests.swift",
"C+Extensions.swift",
"ConvertActionIndexerTests.swift",
"ConvertActionStaticHostableTests.swift",
"ConvertActionTests.swift",
"DirectoryMonitorTests.swift",
"EmitGeneratedCurationsActionTests.swift",
"FolderStructure.swift",
"FolderStructureTests.swift",
"HTMLTemplateDirectory.swift",
"IndexActionTests.swift",
"Init/InitActionTests.swift",
"JSONEncodingRenderNodeWriterTests.swift",
"MergeActionTests.swift",
"OutOfProcessReferenceResolverTests.swift",
"PlatformArgumentParserTests.swift",
"PreviewActionIntegrationTests.swift",
"PreviewServer/PreviewHTTPHandlerTests.swift",
"PreviewServer/RequestHandler/DefaultRequestHandlerTests.swift",
"PreviewServer/RequestHandler/ErrorRequestHandlerTests.swift",
"PreviewServer/RequestHandler/FileRequestHandlerTests.swift",
"PreviewServer/ServerTestUtils.swift",
"ProblemTests.swift",
"SemanticAnalyzerTests.swift",
"ShadowFileManagerTemporaryDirectory.swift",
"SignalTests.swift",
"StaticHostableTransformerTests.swift",
"StaticHostingBaseTest.swift",
"ThrottleTests.swift",
"TransformForStaticHostingActionTests.swift",
"Utility/DirectedGraphTests.swift",
"Utility/FileTests.swift",
"Utility/LogHandleTests.swift",
"Utility/Sequence+UniqueTests.swift",
"Utility/TestFileSystemTests.swift",
"Utility/URL+IsAbsoluteWebURLTests.swift",
"Utility/URL+RelativeTests.swift",
"Utility/XCTestCase+enableFeatureFlag.swift",
"XCTestCase+LoadingData.swift"
],
"target_dependencies" : [
"SwiftDocCUtilities",
"SwiftDocC",
"SwiftDocCTestUtilities"
],
"type" : "test"
},
{
"c99name" : "SwiftDocCUtilities",
"module_type" : "SwiftTarget",
"name" : "SwiftDocCUtilities",
"path" : "Sources/SwiftDocCUtilities",
"product_dependencies" : [
"NIOHTTP1",
"ArgumentParser"
],
"product_memberships" : [
"docc",
"signal-test-app"
],
"sources" : [
"Action/Action.swift",
"Action/ActionResult.swift",
"Action/Actions/Action+MoveOutput.swift",
"Action/Actions/Convert/ConvertAction.swift",
"Action/Actions/Convert/ConvertFileWritingConsumer.swift",
"Action/Actions/Convert/CoverageDataEntry+generateSummary.swift",
"Action/Actions/Convert/Indexer.swift",
"Action/Actions/Convert/JSONEncodingRenderNodeWriter.swift",
"Action/Actions/CoverageAction.swift",
"Action/Actions/EmitGeneratedCurationAction.swift",
"Action/Actions/IndexAction.swift",
"Action/Actions/Init/CatalogTemplate.swift",
"Action/Actions/Init/CatalogTemplateKind.swift",
"Action/Actions/Init/InitAction.swift",
"Action/Actions/Merge/MergeAction+SynthesizedLandingPage.swift",
"Action/Actions/Merge/MergeAction.swift",
"Action/Actions/PreviewAction.swift",
"Action/Actions/TransformForStaticHostingAction.swift",
"ArgumentParsing/ActionExtensions/Action+performAndHandleResult.swift",
"ArgumentParsing/ActionExtensions/ConvertAction+CommandInitialization.swift",
"ArgumentParsing/ActionExtensions/EmitGeneratedCurationAction+CommandInitialization.swift",
"ArgumentParsing/ActionExtensions/IndexAction+CommandInitialization.swift",
"ArgumentParsing/ActionExtensions/InitAction+CommandInitialization.swift",
"ArgumentParsing/ActionExtensions/PreviewAction+CommandInitialization.swift",
"ArgumentParsing/ActionExtensions/TransformForStaticHostingAction+CommandInitialization.swift",
"ArgumentParsing/ArgumentValidation/URLArgumentValidator.swift",
"ArgumentParsing/Options/DirectoryPathOption.swift",
"ArgumentParsing/Options/DocumentationArchiveOption.swift",
"ArgumentParsing/Options/DocumentationBundleOption.swift",
"ArgumentParsing/Options/DocumentationCoverageOptionsArgument.swift",
"ArgumentParsing/Options/InitOptions.swift",
"ArgumentParsing/Options/OutOfProcessLinkResolverOption.swift",
"ArgumentParsing/Options/PreviewOptions.swift",
"ArgumentParsing/Options/Source Repository/SourceRepositoryArguments.swift",
"ArgumentParsing/Options/TemplateOption.swift",
"ArgumentParsing/Subcommands/Convert.swift",
"ArgumentParsing/Subcommands/EmitGeneratedCuration.swift",
"ArgumentParsing/Subcommands/Index.swift",
"ArgumentParsing/Subcommands/Init.swift",
"ArgumentParsing/Subcommands/Merge.swift",
"ArgumentParsing/Subcommands/Preview.swift",
"ArgumentParsing/Subcommands/ProcessArchive.swift",
"ArgumentParsing/Subcommands/ProcessCatalog.swift",
"ArgumentParsing/Subcommands/TransformForStaticHosting.swift",
"Docc.swift",
"PreviewServer/PreviewHTTPHandler.swift",
"PreviewServer/PreviewServer.swift",
"PreviewServer/RequestHandler/DefaultRequestHandler.swift",
"PreviewServer/RequestHandler/ErrorRequestHandler.swift",
"PreviewServer/RequestHandler/FileRequestHandler.swift",
"PreviewServer/RequestHandler/HTTPResponseHead+FromRequest.swift",
"PreviewServer/RequestHandler/RequestHandlerFactory.swift",
"Transformers/StaticHostableTransformer.swift",
"Utility/DirectoryMonitor.swift",
"Utility/FoundationExtensions/Sequence+Unique.swift",
"Utility/FoundationExtensions/String+Path.swift",
"Utility/FoundationExtensions/URL+IsAbsoluteWebURL.swift",
"Utility/FoundationExtensions/URL+Relative.swift",
"Utility/PlatformArgumentParser.swift",
"Utility/Signal.swift",
"Utility/Throttle.swift"
],
"target_dependencies" : [
"SwiftDocC"
],
"type" : "library"
},
{
"c99name" : "SwiftDocCTests",
"module_type" : "SwiftTarget",
"name" : "SwiftDocCTests",
"path" : "Tests/SwiftDocCTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftDocCTests/Converter/Converter Fixtures",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftDocCTests/Rendering/Rendering Fixtures",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftDocCTests/Test Bundles",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftDocCTests/Test Resources",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Benchmark/BenchmarkResultsTests.swift",
"Benchmark/BenchmarkTests.swift",
"Benchmark/DurationTests.swift",
"Benchmark/ExternalTopicsHashTests.swift",
"Benchmark/OutputSizeTests.swift",
"Benchmark/TopicAnchorHashTests.swift",
"Benchmark/TopicGraphHashTests.swift",
"Catalog Processing/GeneratedCurationWriterTests.swift",
"Checker/CheckerTests.swift",
"Checker/Checkers/AbstractContainsFormattedTextOnlyTests.swift",
"Checker/Checkers/DuplicateTopicsSectionsTests.swift",
"Checker/Checkers/InvalidAdditionalTitleTests.swift",
"Checker/Checkers/MissingAbstractTests.swift",
"Checker/Checkers/NonInclusiveLanguageCheckerTests.swift",
"Checker/Checkers/NonOverviewHeadingCheckerTests.swift",
"Checker/Checkers/SeeAlsoInTopicsHeadingCheckerTests.swift",
"Converter/DocumentationContextConverterTests.swift",
"Converter/DocumentationConverterTests.swift",
"Converter/ReferenceURLTests.swift",
"Converter/RenderContextTests.swift",
"Converter/RenderNodeCodableTests.swift",
"Converter/RenderNodeTransformerTests.swift",
"Converter/Rewriter/RenderNodeVariantOverridesApplierTests.swift",
"Converter/TopicRenderReferenceEncoderTests.swift",
"Coverage/CoverageDetailedOutputTests.swift",
"Coverage/CoverageSummaryTests.swift",
"Coverage/RatioStatisticTests.swift",
"DeprecatedDiagnosticsDigestWarningTests.swift",
"Diagnostics/DiagnosticConsoleWriterDefaultFormattingTest.swift",
"Diagnostics/DiagnosticConsoleWriterTests.swift",
"Diagnostics/DiagnosticEngineTests.swift",
"Diagnostics/DiagnosticFileWriterTests.swift",
"Diagnostics/DiagnosticSeverityTests.swift",
"Diagnostics/DiagnosticTests.swift",
"Diagnostics/ProblemTests.swift",
"DocumentationService/ConvertService/ConvertServiceTests.swift",
"DocumentationService/DocumentationServer+DefaultTests.swift",
"DocumentationService/Models/DocumentationServer+MessageTests.swift",
"DocumentationService/Models/DocumentationServer+MessageTypeTests.swift",
"DocumentationService/Models/DocumentationServerTests.swift",
"Indexing/ExternalRenderNodeTests.swift",
"Indexing/IndexingTests.swift",
"Indexing/NavigatorIndexTests.swift",
"Indexing/RenderIndexTests.swift",
"Infrastructure/AnchorSectionTests.swift",
"Infrastructure/AutoCapitalizationTests.swift",
"Infrastructure/AutomaticCurationTests.swift",
"Infrastructure/BundleDiscoveryTests.swift",
"Infrastructure/Communication/WebKitCommunicationBridgeTests.swift",
"Infrastructure/DataAssetManagerTests.swift",
"Infrastructure/DirectiveArgumentWrappedTests.swift",
"Infrastructure/DocumentationBundleFileTypesTests.swift",
"Infrastructure/DocumentationBundleIdentifierTests.swift",
"Infrastructure/DocumentationBundleInfoTests.swift",
"Infrastructure/DocumentationBundleTests.swift",
"Infrastructure/DocumentationContext/DocumentationContext+MixedLanguageLinkResolutionTests.swift",
"Infrastructure/DocumentationContext/DocumentationContext+MixedLanguageSourceLanguagesTests.swift",
"Infrastructure/DocumentationContext/DocumentationContext+RootPageTests.swift",
"Infrastructure/DocumentationContext/DocumentationContextTests.swift",
"Infrastructure/DocumentationCuratorTests.swift",
"Infrastructure/DocumentationWorkspaceTests.swift",
"Infrastructure/ExternalPathHierarchyResolverTests.swift",
"Infrastructure/ExternalReferenceResolverTests.swift",
"Infrastructure/GeneratedDataProvider.swift",
"Infrastructure/InheritIntroducedAvailabilityTests.swift",
"Infrastructure/Input Discovery/DocumentationInputsProviderTests.swift",
"Infrastructure/NodeTagsTests.swift",
"Infrastructure/NodeURLGeneratorTests.swift",
"Infrastructure/ParseDirectiveArgumentsTests.swift",
"Infrastructure/PathHierarchyBasedLinkResolverTests.swift",
"Infrastructure/PathHierarchyTests.swift",
"Infrastructure/PresentationURLGeneratorTests.swift",
"Infrastructure/ReferenceResolverTests.swift",
"Infrastructure/ResolvedTopicReferenceTests.swift",
"Infrastructure/SVGIDExtractorTests.swift",
"Infrastructure/SemanticVersionTests.swift",
"Infrastructure/Symbol Link Resolution/AbsoluteSymbolLinkTests.swift",
"Infrastructure/Symbol Link Resolution/DocCSymbolRepresentableTests.swift",
"Infrastructure/Symbol Link Resolution/LinkCompletionToolsTests.swift",
"Infrastructure/SymbolBreadcrumbTests.swift",
"Infrastructure/SymbolDisambiguationTests.swift",
"Infrastructure/SymbolGraph/ExtendedTypesFormatTransformationTests.swift",
"Infrastructure/SymbolGraph/SymbolGraphConcurrentDecoderTests.swift",
"Infrastructure/SymbolGraph/SymbolGraphLoaderTests.swift",
"Infrastructure/SymbolGraph/SymbolGraphRelationshipsBuilderTests.swift",
"Infrastructure/SymbolReferenceTests.swift",
"Infrastructure/TestExternalReferenceResolvers.swift",
"Infrastructure/TinySmallValueIntSetTests.swift",
"Infrastructure/TopicGraphTests.swift",
"Infrastructure/VersionTests.swift",
"Infrastructure/VersionTripletTests.swift",
"LinkTargets/LinkDestinationSummaryTests.swift",
"Model/AvailabilityParserTests.swift",
"Model/ContentAndMediaSectionTests.swift",
"Model/DocumentationMarkupTests.swift",
"Model/DocumentationNodeTests.swift",
"Model/IdentifierTests.swift",
"Model/LineHighlighterTests.swift",
"Model/ParametersAndReturnValidatorTests.swift",
"Model/PropertyListPossibleValuesSectionTests.swift",
"Model/RenderBlockContent+CapitalizationTests.swift",
"Model/RenderContentMetadataTests.swift",
"Model/RenderHierarchyTests.swift",
"Model/RenderHierarchyTranslatorTests.swift",
"Model/RenderNodeDiffingBundleTests.swift",
"Model/RenderNodeSerializationTests.swift",
"Model/RenderSectionTests.swift",
"Model/ResourceReferenceTests.swift",
"Model/SemaToRenderNodeArticleOnlyCatalogTests.swift",
"Model/SemaToRenderNodeDictionaryDataTests.swift",
"Model/SemaToRenderNodeHTTPRequestTests.swift",
"Model/SemaToRenderNodeMultiLanguageTests.swift",
"Model/SemaToRenderNodeSourceRepositoryTests.swift",
"Model/SemaToRenderNodeTests.swift",
"Model/SourceLanguageTests.swift",
"Model/TaskGroupTests.swift",
"Model/TopicRenderReferenceTests.swift",
"Rendering/AttributesRenderSectionTests.swift",
"Rendering/AutomaticSeeAlsoTests.swift",
"Rendering/AvailabilityRenderOrderTests.swift",
"Rendering/ConstraintsRenderSectionTests.swift",
"Rendering/CustomFormattingRenderElementsTests.swift",
"Rendering/DeclarationsRenderSectionTests.swift",
"Rendering/DefaultAvailabilityTests.swift",
"Rendering/DefaultCodeListingSyntaxTests.swift",
"Rendering/DeprecationSummaryTests.swift",
"Rendering/DictionarySymbolsTests.swift",
"Rendering/DiffAvailabilityTests.swift",
"Rendering/DocumentationContentRenderer+SwiftTests.swift",
"Rendering/DocumentationContentRendererTests.swift",
"Rendering/ExternalLinkTitleTests.swift",
"Rendering/HeadingAnchorTests.swift",
"Rendering/InlineContentPlainTextTests.swift",
"Rendering/IntroRenderSectionTests.swift",
"Rendering/LinkTitleResolverTests.swift",
"Rendering/MentionsRenderSectionTests.swift",
"Rendering/PageKindTests.swift",
"Rendering/PlatformAvailabilityTests.swift",
"Rendering/PlistSymbolTests.swift",
"Rendering/PropertyListDetailsRenderSectionTests.swift",
"Rendering/RESTBodyRenderSectionTests.swift",
"Rendering/RESTExampleRenderSectionTests.swift",
"Rendering/RESTResponseRenderSectionTests.swift",
"Rendering/RESTSymbolsTests.swift",
"Rendering/RenderBlockContent+AsideStyleTests.swift",
"Rendering/RenderBlockContent_ThematicBreakTests.swift",
"Rendering/RenderContentCompilerTests.swift",
"Rendering/RenderMetadataTests.swift",
"Rendering/RenderNodeTranslatorSymbolVariantsTests.swift",
"Rendering/RenderNodeTranslatorTests.swift",
"Rendering/RoleTests.swift",
"Rendering/RoundTripCoding.swift",
"Rendering/SampleDownloadTests.swift",
"Rendering/SemanticVersionStringRepresentationTests.swift",
"Rendering/SubscriptSuperscriptElementsTests.swift",
"Rendering/SymbolAvailabilityTests.swift",
"Rendering/TableElementTests.swift",
"Rendering/TermListTests.swift",
"Rendering/URLReferenceTests.swift",
"Rendering/Variants/JSONPatchApplierTests.swift",
"Rendering/Variants/JSONPatchOperationTests.swift",
"Rendering/Variants/JSONPointerTests.swift",
"Rendering/Variants/VariantCollection+Extensions.swift",
"Rendering/Variants/VariantCollection+VariantTests.swift",
"Rendering/Variants/VariantCollectionTests.swift",
"Rendering/Variants/VariantContainerTests.swift",
"Rendering/Variants/VariantOverridesTests.swift",
"Rendering/Variants/VariantPatchOperationTests.swift",
"Semantics/ArticleSymbolMentionsTests.swift",
"Semantics/ArticleTests.swift",
"Semantics/AssessmentsTests.swift",
"Semantics/CallToActionTests.swift",
"Semantics/ChapterTests.swift",
"Semantics/ChoiceTests.swift",
"Semantics/CodeTests.swift",
"Semantics/ContentAndMediaTests.swift",
"Semantics/DirectiveInfrastructure/DirectiveIndexTests.swift",
"Semantics/DirectiveInfrastructure/DirectiveMirrorTests.swift",
"Semantics/DisplayNameTests.swift",
"Semantics/DocumentationDataVariantsTests.swift",
"Semantics/DocumentationExtensionTests.swift",
"Semantics/DoxygenTests.swift",
"Semantics/General Purpose Analyses/HasArgumentOfTypeTests.swift",
"Semantics/General Purpose Analyses/HasAtLeastOneTests.swift",
"Semantics/General Purpose Analyses/HasAtMostOneTests.swift",
"Semantics/General Purpose Analyses/HasContentTests.swift",
"Semantics/General Purpose Analyses/HasExactlyOneTests.swift",
"Semantics/General Purpose Analyses/HasOnlyKnownArgumentsTests.swift",
"Semantics/General Purpose Analyses/HasOnlyKnownDirectivesTests.swift",
"Semantics/General Purpose Analyses/HasOnlySequentialHeadingsTests.swift",
"Semantics/ImageMediaTests.swift",
"Semantics/IntroTests.swift",
"Semantics/JustificationTests.swift",
"Semantics/MarkupReferenceResolverTests.swift",
"Semantics/MetadataAlternateRepresentationTests.swift",
"Semantics/MetadataAvailabilityTests.swift",
"Semantics/MetadataTests.swift",
"Semantics/MultipleChoiceTests.swift",
"Semantics/Options/OptionsTests.swift",
"Semantics/RedirectedTests.swift",
"Semantics/Reference/LinksTests.swift",
"Semantics/Reference/RowTests.swift",
"Semantics/Reference/SmallTests.swift",
"Semantics/Reference/TabNavigatorTests.swift",
"Semantics/ResourcesTests.swift",
"Semantics/SectionTests.swift",
"Semantics/SnippetTests.swift",
"Semantics/StackTests.swift",
"Semantics/StepTests.swift",
"Semantics/SymbolTests.swift",
"Semantics/TechnologyTests.swift",
"Semantics/TileTests.swift",
"Semantics/TutorialArticleTests.swift",
"Semantics/TutorialReferenceTests.swift",
"Semantics/TutorialTests.swift",
"Semantics/UnifiedSymbol+ExtensionsTests.swift",
"Semantics/VideoMediaTests.swift",
"Semantics/VolumeTests.swift",
"Semantics/XcodeRequirementTests.swift",
"Servers/DocumentationSchemeHandlerTests.swift",
"Servers/FileServerTests.swift",
"ShadowFileManagerTemporaryDirectory.swift",
"SourceRepository/SourceRepositoryTests.swift",
"TestRenderNodeOutputConsumer.swift",
"Utility/ChecksumTests.swift",
"Utility/Collection+ConcurrentPerformTests.swift",
"Utility/CollectionChangesTests.swift",
"Utility/DataStructures/BidirectionalMapTests.swift",
"Utility/DataStructures/GroupedSequenceTests.swift",
"Utility/DescribedErrorTests.swift",
"Utility/KeyedEncodingContainerTests.swift",
"Utility/LMDBTests.swift",
"Utility/Language/EnglishLanguageTests.swift",
"Utility/ListItemExtractorTests.swift",
"Utility/NearMissTests.swift",
"Utility/NoOpSignposterShimTests.swift",
"Utility/QuotingTests.swift",
"Utility/RangeReplaceableCollection+GroupTests.swift",
"Utility/RenderBlockContentTextExtraction.swift",
"Utility/RenderNodeDataExtractorTests.swift",
"Utility/SemanticVersion+ComparableTests.swift",
"Utility/Sequence+CategorizeTests.swift",
"Utility/Sequence+MapFirstTests.swift",
"Utility/SortByKeyPathTests.swift",
"Utility/String+CapitalizationTests.swift",
"Utility/String+HashingTests.swift",
"Utility/String+Slash.swift",
"Utility/String+SplittingTests.swift",
"Utility/String+WhitespaceTests.swift",
"Utility/SymbolGraphAvailabilityFilterTests.swift",
"Utility/SynchronizationTests.swift",
"Utility/URL+IsAbsoluteWebURLTests.swift",
"Utility/URL+RelativeTests.swift",
"Utility/URL+WithoutHostAndSchemeTests.swift",
"Utility/ValidatedURLTests.swift",
"Utility/XCTestCase+MentionedIn.swift",
"Utility/XCTestCase+enableFeatureFlag.swift",
"XCTestCase+AssertingTestData.swift",
"XCTestCase+LoadingTestData.swift"
],
"target_dependencies" : [
"SwiftDocC",
"SwiftDocCTestUtilities"
],
"type" : "test"
},
{
"c99name" : "SwiftDocCTestUtilities",
"module_type" : "SwiftTarget",
"name" : "SwiftDocCTestUtilities",
"path" : "Sources/SwiftDocCTestUtilities",
"product_dependencies" : [
"SymbolKit"
],
"sources" : [
"FilesAndFolders.swift",
"SymbolGraphCreation.swift",
"TestFileSystem.swift",
"XCTestCase+TemporaryDirectory.swift"
],
"target_dependencies" : [
"SwiftDocC"
],
"type" : "library"
},
{
"c99name" : "SwiftDocC",
"module_type" : "SwiftTarget",
"name" : "SwiftDocC",
"path" : "Sources/SwiftDocC",
"product_dependencies" : [
"Markdown",
"SymbolKit",
"CLMDB",
"Crypto"
],
"product_memberships" : [
"SwiftDocC",
"docc",
"signal-test-app",
"generate-symbol-graph"
],
"sources" : [
"Benchmark/Benchmark.swift",
"Benchmark/BenchmarkResults.swift",
"Benchmark/Metrics.swift",
"Benchmark/Metrics/Duration.swift",
"Benchmark/Metrics/ExternalTopicsHash.swift",
"Benchmark/Metrics/OutputSize.swift",
"Benchmark/Metrics/PeakMemory.swift",
"Benchmark/Metrics/TopicAnchorHash.swift",
"Benchmark/Metrics/TopicGraphHash.swift",
"Catalog Processing/GeneratedCurationWriter.swift",
"Checker/Checker.swift",
"Checker/Checkers/AbstractContainsFormattedTextOnly.swift",
"Checker/Checkers/DuplicateTopicsSection.swift",
"Checker/Checkers/InvalidAdditionalTitle.swift",
"Checker/Checkers/MissingAbstract.swift",
"Checker/Checkers/NonInclusiveLanguageChecker.swift",
"Checker/Checkers/NonOverviewHeadingChecker.swift",
"Checker/Checkers/SeeAlsoInTopicsHeadingChecker.swift",
"Converter/DocumentationContextConverter.swift",
"Converter/DocumentationNodeConverter.swift",
"Converter/RenderNode+Coding.swift",
"Converter/Rewriter/RemoveHierarchyTransformation.swift",
"Converter/Rewriter/RemoveUnusedReferencesTransformation.swift",
"Converter/Rewriter/RenderNodeTransformationComposition.swift",
"Converter/Rewriter/RenderNodeTransformationContext.swift",
"Converter/Rewriter/RenderNodeTransformer.swift",
"Converter/Rewriter/RenderNodeTransforming.swift",
"Converter/TopicRenderReferenceEncoder.swift",
"Coverage/DocumentationCoverageOptions.swift",
"DocumentationService/Convert/ConvertService+DataProvider.swift",
"DocumentationService/Convert/ConvertService.swift",
"DocumentationService/Convert/Fallback Link Resolution/ConvertServiceFallbackResolver.swift",
"DocumentationService/Convert/Symbol Link Resolution/AbsoluteSymbolLink.swift",
"DocumentationService/Convert/Symbol Link Resolution/DocCSymbolRepresentable.swift",
"DocumentationService/Convert/Symbol Link Resolution/LinkCompletionTools.swift",
"DocumentationService/DocumentationServer+createDefaultServer.swift",
"DocumentationService/ExternalReferenceResolverServiceClient.swift",
"DocumentationService/Models/DocumentationServer+Message.swift",
"DocumentationService/Models/DocumentationServer+MessageType.swift",
"DocumentationService/Models/DocumentationServer.swift",
"DocumentationService/Models/DocumentationServerError.swift",
"DocumentationService/Models/DocumentationServerProtocol.swift",
"DocumentationService/Models/DocumentationService.swift",
"DocumentationService/Models/Services/Convert/ConvertRequest.swift",
"DocumentationService/Models/Services/Convert/ConvertRequestContextWrapper.swift",
"DocumentationService/Models/Services/Convert/ConvertResponse.swift",
"DocumentationService/Models/Services/Convert/ConvertServiceError.swift",
"Indexing/Indexable.swift",
"Indexing/IndexingError.swift",
"Indexing/IndexingRecord.swift",
"Indexing/Navigator/AvailabilityIndex+Ext.swift",
"Indexing/Navigator/AvailabilityIndex.swift",
"Indexing/Navigator/NavigatorIndex+Ext.swift",
"Indexing/Navigator/NavigatorIndex.swift",
"Indexing/Navigator/NavigatorItem.swift",
"Indexing/Navigator/NavigatorTree.swift",
"Indexing/Navigator/RenderNode+NavigatorIndex.swift",
"Indexing/RenderBlockContent+TextIndexing.swift",
"Indexing/RenderIndexJSON/RenderIndex.swift",
"Indexing/RenderInlineContent+TextIndexing.swift",
"Indexing/RenderNode+Indexable.swift",
"Indexing/RenderNode+Relationships.swift",
"Indexing/RenderSection+TextIndexing.swift",
"Indexing/TutorialSectionsRenderSection+Indexable.swift",
"Infrastructure/Bundle Assets/BundleData.swift",
"Infrastructure/Bundle Assets/DataAssetManager.swift",
"Infrastructure/Bundle Assets/SVGIDExtractor.swift",
"Infrastructure/Communication/Code colors/CodeColors.swift",
"Infrastructure/Communication/Code colors/CodeColorsPreferenceKey.swift",
"Infrastructure/Communication/Code colors/SRGBColor.swift",
"Infrastructure/Communication/CommunicationBridge.swift",
"Infrastructure/Communication/Foundation/AnyCodable.swift",
"Infrastructure/Communication/Foundation/JSON.swift",
"Infrastructure/Communication/Message+Codable.swift",
"Infrastructure/Communication/Message.swift",
"Infrastructure/Communication/MessageType.swift",
"Infrastructure/Communication/WebKitCommunicationBridge.swift",
"Infrastructure/ContentCache.swift",
"Infrastructure/Context/Deprecated/DocumentationContext+Deprecated.swift",
"Infrastructure/Context/DocumentationContext+Configuration.swift",
"Infrastructure/ConvertActionConverter.swift",
"Infrastructure/ConvertOutputConsumer.swift",
"Infrastructure/CoverageDataEntry.swift",
"Infrastructure/Diagnostics/ANSIAnnotation.swift",
"Infrastructure/Diagnostics/Diagnostic.swift",
"Infrastructure/Diagnostics/DiagnosticConsoleWriter.swift",
"Infrastructure/Diagnostics/DiagnosticConsumer.swift",
"Infrastructure/Diagnostics/DiagnosticEngine.swift",
"Infrastructure/Diagnostics/DiagnosticFile.swift",
"Infrastructure/Diagnostics/DiagnosticFileWriter.swift",
"Infrastructure/Diagnostics/DiagnosticFormattingOptions.swift",
"Infrastructure/Diagnostics/DiagnosticNote.swift",
"Infrastructure/Diagnostics/DiagnosticSeverity.swift",
"Infrastructure/Diagnostics/ParseDirectiveArguments.swift",
"Infrastructure/Diagnostics/Problem.swift",
"Infrastructure/Diagnostics/Replacement.swift",
"Infrastructure/Diagnostics/Solution.swift",
"Infrastructure/Diagnostics/SourcePosition.swift",
"Infrastructure/Diagnostics/TerminalHelper.swift",
"Infrastructure/DocumentationBundle+Identifier.swift",
"Infrastructure/DocumentationBundle.swift",
"Infrastructure/DocumentationBundleFileTypes.swift",
"Infrastructure/DocumentationContext+Breadcrumbs.swift",
"Infrastructure/DocumentationContext.swift",
"Infrastructure/DocumentationConverter.swift",
"Infrastructure/DocumentationCurator.swift",
"Infrastructure/Extensions/KindIdentifier+Curation.swift",
"Infrastructure/Extensions/SymbolGraph.Symbol.Location+URL.swift",
"Infrastructure/External Data/ExternalDocumentationSource.swift",
"Infrastructure/External Data/ExternalMetadata.swift",
"Infrastructure/External Data/GlobalExternalSymbolResolver.swift",
"Infrastructure/External Data/OutOfProcessReferenceResolver.swift",
"Infrastructure/Input Discovery/DataProvider.swift",
"Infrastructure/Input Discovery/DocumentationInputsProvider.swift",
"Infrastructure/Link Resolution/ExternalPathHierarchyResolver.swift",
"Infrastructure/Link Resolution/LinkResolver+NavigatorIndex.swift",
"Infrastructure/Link Resolution/LinkResolver.swift",
"Infrastructure/Link Resolution/PathHierarchy+DisambiguatedPaths.swift",
"Infrastructure/Link Resolution/PathHierarchy+Dump.swift",
"Infrastructure/Link Resolution/PathHierarchy+Error.swift",
"Infrastructure/Link Resolution/PathHierarchy+Find.swift",
"Infrastructure/Link Resolution/PathHierarchy+PathComponent.swift",
"Infrastructure/Link Resolution/PathHierarchy+Serialization.swift",
"Infrastructure/Link Resolution/PathHierarchy+TypeSignature.swift",
"Infrastructure/Link Resolution/PathHierarchy+TypeSignatureDisambiguation.swift",
"Infrastructure/Link Resolution/PathHierarchy.swift",
"Infrastructure/Link Resolution/PathHierarchyBasedLinkResolver+Breadcrumbs.swift",
"Infrastructure/Link Resolution/PathHierarchyBasedLinkResolver+Overloads.swift",
"Infrastructure/Link Resolution/PathHierarchyBasedLinkResolver.swift",
"Infrastructure/NodeURLGenerator.swift",
"Infrastructure/Symbol Graph/AccessControl+Comparable.swift",
"Infrastructure/Symbol Graph/ExtendedTypeFormatExtension.swift",
"Infrastructure/Symbol Graph/ExtendedTypeFormatTransformation.swift",
"Infrastructure/Symbol Graph/GeneratedDocumentationTopics.swift",
"Infrastructure/Symbol Graph/ResolvedTopicReference+Symbol.swift",
"Infrastructure/Symbol Graph/SymbolGraphConcurrentDecoder.swift",
"Infrastructure/Symbol Graph/SymbolGraphLoader.swift",
"Infrastructure/Symbol Graph/SymbolGraphRelationshipsBuilder.swift",
"Infrastructure/Symbol Graph/SymbolReference.swift",
"Infrastructure/Symbol Graph/UnresolvedTopicReference+Symbol.swift",
"Infrastructure/Topic Graph/AutomaticCuration.swift",
"Infrastructure/Topic Graph/TopicGraph.swift",
"Infrastructure/Workspace/DefaultAvailability.swift",
"Infrastructure/Workspace/DocumentationBundle+Info.swift",
"Infrastructure/Workspace/DocumentationWorkspace.swift",
"Infrastructure/Workspace/DocumentationWorkspaceDataProvider.swift",
"Infrastructure/Workspace/FeatureFlags+Info.swift",
"Infrastructure/Workspace/FileSystemProvider.swift",
"Infrastructure/Workspace/GeneratedDataProvider.swift",
"Infrastructure/Workspace/LocalFileSystemDataProvider+BundleDiscovery.swift",
"Infrastructure/Workspace/LocalFileSystemDataProvider.swift",
"Infrastructure/Workspace/PrebuiltLocalFileSystemDataProvider.swift",
"LinkTargets/LinkDestinationSummary.swift",
"Model/AnchorSection.swift",
"Model/AvailabilityParser.swift",
"Model/BuildMetadata.swift",
"Model/DocumentationMarkup.swift",
"Model/DocumentationNode.swift",
"Model/Identifier.swift",
"Model/Kind.swift",
"Model/Markup+parsing.swift",
"Model/Name.swift",
"Model/ParametersAndReturnValidator.swift",
"Model/Rendering/Content/Extensions/RenderTermLists.swift",
"Model/Rendering/Content/RenderBlockContent+Capitalization.swift",
"Model/Rendering/Content/RenderBlockContent.swift",
"Model/Rendering/Content/RenderContentMetadata.swift",
"Model/Rendering/Content/RenderInlineContent.swift",
"Model/Rendering/Diffing/AnyRenderReference.swift",
"Model/Rendering/Diffing/AnyRenderSection.swift",
"Model/Rendering/Diffing/DifferenceBuilder.swift",
"Model/Rendering/Diffing/Differences.swift",
"Model/Rendering/Diffing/RenderNode+Diffable.swift",
"Model/Rendering/DocumentationContentRenderer.swift",
"Model/Rendering/LinkTitleResolver.swift",
"Model/Rendering/Navigation Tree/RenderHierarchy.swift",
"Model/Rendering/Navigation Tree/RenderHierarchyChapter.swift",
"Model/Rendering/Navigation Tree/RenderHierarchyLandmark.swift",
"Model/Rendering/Navigation Tree/RenderHierarchyTranslator.swift",
"Model/Rendering/Navigation Tree/RenderHierarchyTutorial.swift",
"Model/Rendering/Navigation Tree/RenderReferenceHierarchy.swift",
"Model/Rendering/Navigation Tree/RenderTutorialsHierarchy.swift",
"Model/Rendering/PresentationURLGenerator.swift",
"Model/Rendering/References/AssetReferences.swift",
"Model/Rendering/References/FileReference.swift",
"Model/Rendering/References/ImageReference.swift",
"Model/Rendering/References/LinkReference.swift",
"Model/Rendering/References/MediaReference.swift",
"Model/Rendering/References/RenderReference.swift",
"Model/Rendering/References/TopicColor.swift",
"Model/Rendering/References/TopicImage.swift",
"Model/Rendering/References/TopicRenderReference.swift",
"Model/Rendering/References/UnresolvedReference.swift",
"Model/Rendering/References/VideoReference.swift",
"Model/Rendering/RenderContentCompiler.swift",
"Model/Rendering/RenderContentConvertible.swift",
"Model/Rendering/RenderContext.swift",
"Model/Rendering/RenderNode.Tag.swift",
"Model/Rendering/RenderNode.swift",
"Model/Rendering/RenderNode/AnyMetadata.swift",
"Model/Rendering/RenderNode/CodableContentSection.swift",
"Model/Rendering/RenderNode/CodableRenderReference.swift",
"Model/Rendering/RenderNode/CodableRenderSection.swift",
"Model/Rendering/RenderNode/RenderMetadata.swift",
"Model/Rendering/RenderNode/RenderNode+Codable.swift",
"Model/Rendering/RenderNodeTranslator.swift",
"Model/Rendering/RenderNodeVariant.swift",
"Model/Rendering/RenderReferenceStore.swift",
"Model/Rendering/RenderSection.swift",
"Model/Rendering/RenderSectionTranslator/AttributesSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/DeclarationsSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/DictionaryKeysSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/DiscussionSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/HTTPBodySectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/HTTPEndpointSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/HTTPParametersSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/HTTPResponsesSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/MentionsSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/ParametersSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/PlistDetailsSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/PossibleValuesSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/RenderSectionTranslator.swift",
"Model/Rendering/RenderSectionTranslator/ReturnsSectionTranslator.swift",
"Model/Rendering/SemanticVersion.swift",
"Model/Rendering/Symbol/AttributesRenderSection.swift",
"Model/Rendering/Symbol/AvailabilityRenderMetadataItem.swift",
"Model/Rendering/Symbol/AvailabilitySortOrder.swift",
"Model/Rendering/Symbol/ConformanceSection.swift",
"Model/Rendering/Symbol/ContentRenderSection.swift",
"Model/Rendering/Symbol/DeclarationRenderSection+SymbolGraph.swift",
"Model/Rendering/Symbol/DeclarationsRenderSection.swift",
"Model/Rendering/Symbol/DiffAvailability.swift",
"Model/Rendering/Symbol/MentionsRenderSection.swift",
"Model/Rendering/Symbol/ParameterRenderSection.swift",
"Model/Rendering/Symbol/PossibleValuesRenderSection.swift",
"Model/Rendering/Symbol/PropertiesRenderSection.swift",
"Model/Rendering/Symbol/PropertyListDetailsRenderSection.swift",
"Model/Rendering/Symbol/RESTBodyRenderSection.swift",
"Model/Rendering/Symbol/RESTEndpointRenderSection.swift",
"Model/Rendering/Symbol/RESTExampleRenderSection.swift",
"Model/Rendering/Symbol/RESTParametersRenderSection.swift",
"Model/Rendering/Symbol/RESTResponseRenderSection.swift",
"Model/Rendering/Symbol/RelationshipsRenderSection.swift",
"Model/Rendering/Symbol/SampleDownloadSection.swift",
"Model/Rendering/Symbol/TaskGroupRenderSection.swift",
"Model/Rendering/TopicsSectionStyle.swift",
"Model/Rendering/Tutorial Article/TutorialArticleSection.swift",
"Model/Rendering/Tutorial/LineHighlighter.swift",
"Model/Rendering/Tutorial/References/DownloadReference.swift",
"Model/Rendering/Tutorial/References/XcodeRequirementReference.swift",
"Model/Rendering/Tutorial/Sections/IntroRenderSection.swift",
"Model/Rendering/Tutorial/Sections/TutorialAssessmentsRenderSection.swift",
"Model/Rendering/Tutorial/Sections/TutorialSectionsRenderSection.swift",
"Model/Rendering/Tutorials Overview/Resources/RenderTile.swift",
"Model/Rendering/Tutorials Overview/Sections/CallToActionSection.swift",
"Model/Rendering/Tutorials Overview/Sections/ContentAndMediaGroupSection.swift",
"Model/Rendering/Tutorials Overview/Sections/ContentAndMediaSection.swift",
"Model/Rendering/Tutorials Overview/Sections/ResourcesRenderSection.swift",
"Model/Rendering/Tutorials Overview/Sections/VolumeRenderSection.swift",
"Model/Rendering/Variants/JSONPatchApplier.swift",
"Model/Rendering/Variants/JSONPatchOperation.swift",
"Model/Rendering/Variants/JSONPointer.swift",
"Model/Rendering/Variants/PatchOperation.swift",
"Model/Rendering/Variants/RenderNodeVariantOverridesApplier.swift",
"Model/Rendering/Variants/VariantCollection+Coding.swift",
"Model/Rendering/Variants/VariantCollection+Symbol.swift",
"Model/Rendering/Variants/VariantCollection+Variant.swift",
"Model/Rendering/Variants/VariantCollection.swift",
"Model/Rendering/Variants/VariantContainer.swift",
"Model/Rendering/Variants/VariantOverride.swift",
"Model/Rendering/Variants/VariantOverrides.swift",
"Model/Rendering/Variants/VariantPatchOperation.swift",
"Model/Section/Section.swift",
"Model/Section/Sections/Abstract.swift",
"Model/Section/Sections/AutomaticTaskGroupSection.swift",
"Model/Section/Sections/DefaultImplementations.swift",
"Model/Section/Sections/DeprecatedSection.swift",
"Model/Section/Sections/DictionaryKeysSection.swift",
"Model/Section/Sections/Discussion.swift",
"Model/Section/Sections/GroupedSection.swift",
"Model/Section/Sections/HTTPBodySection.swift",
"Model/Section/Sections/HTTPEndpointSection.swift",
"Model/Section/Sections/HTTPParametersSection.swift",
"Model/Section/Sections/HTTPResponsesSection.swift",
"Model/Section/Sections/ParametersSection.swift",
"Model/Section/Sections/PropertyListPossibleValuesSection.swift",
"Model/Section/Sections/Relationships.swift",
"Model/Section/Sections/ReturnsSection.swift",
"Model/Section/Sections/SeeAlso.swift",
"Model/Section/Sections/Topics.swift",
"Model/Semantics/DictionaryKey.swift",
"Model/Semantics/HTTPBody.swift",
"Model/Semantics/HTTPParameter.swift",
"Model/Semantics/HTTPResponse.swift",
"Model/Semantics/LegacyTag.swift",
"Model/Semantics/Parameter.swift",
"Model/Semantics/Return.swift",
"Model/Semantics/Throw.swift",
"Model/SourceLanguage.swift",
"Model/TaskGroup.swift",
"Semantics/Abstracted.swift",
"Semantics/Article/Article.swift",
"Semantics/Article/ArticleSymbolMentions.swift",
"Semantics/Article/MarkupConvertible.swift",
"Semantics/Comment.swift",
"Semantics/ContentAndMedia.swift",
"Semantics/DirectiveConvertable.swift",
"Semantics/DirectiveInfrastructure/AutomaticDirectiveConvertible.swift",
"Semantics/DirectiveInfrastructure/ChildDirectiveWrapper.swift",
"Semantics/DirectiveInfrastructure/ChildMarkdownWrapper.swift",
"Semantics/DirectiveInfrastructure/DirectiveArgumentValueConvertible.swift",
"Semantics/DirectiveInfrastructure/DirectiveArgumentWrapper.swift",
"Semantics/DirectiveInfrastructure/DirectiveIndex.swift",
"Semantics/DirectiveInfrastructure/DirectiveMirror.swift",
"Semantics/DirectiveInfrastructure/MarkupContaining.swift",
"Semantics/DirectiveParser.swift",
"Semantics/ExternalLinks/ExternalMarkupReferenceWalker.swift",
"Semantics/ExternalLinks/ExternalReferenceWalker.swift",
"Semantics/General Purpose Analyses/DeprecatedArgument.swift",
"Semantics/General Purpose Analyses/Extract.swift",
"Semantics/General Purpose Analyses/HasArgumentOfType.swift",
"Semantics/General Purpose Analyses/HasAtLeastOne.swift",
"Semantics/General Purpose Analyses/HasAtMostOne.swift",
"Semantics/General Purpose Analyses/HasContent.swift",
"Semantics/General Purpose Analyses/HasExactlyOne.swift",
"Semantics/General Purpose Analyses/HasOnlyKnownArguments.swift",
"Semantics/General Purpose Analyses/HasOnlyKnownDirectives.swift",
"Semantics/General Purpose Analyses/HasOnlySequentialHeadings.swift",
"Semantics/Graph/SymbolKind.Swift.swift",
"Semantics/Intro.swift",
"Semantics/Landmark.swift",
"Semantics/Layout.swift",
"Semantics/MarkupContainer.swift",
"Semantics/MarkupReferenceResolver.swift",
"Semantics/Media/ImageMedia.swift",
"Semantics/Media/Media.swift",
"Semantics/Media/VideoMedia.swift",
"Semantics/Metadata/AlternateRepresentation.swift",
"Semantics/Metadata/Availability.swift",
"Semantics/Metadata/CallToAction.swift",
"Semantics/Metadata/CustomMetadata.swift",
"Semantics/Metadata/DisplayName.swift",
"Semantics/Metadata/DocumentationExtension.swift",
"Semantics/Metadata/Metadata.swift",
"Semantics/Metadata/PageColor.swift",
"Semantics/Metadata/PageImage.swift",
"Semantics/Metadata/PageKind.swift",
"Semantics/Metadata/SupportedLanguage.swift",
"Semantics/Metadata/TechnologyRoot.swift",
"Semantics/Metadata/TitleHeading.swift",
"Semantics/Options/AutomaticArticleSubheading.swift",
"Semantics/Options/AutomaticSeeAlso.swift",
"Semantics/Options/AutomaticTitleHeading.swift",
"Semantics/Options/Options.swift",
"Semantics/Options/TopicsVisualStyle.swift",
"Semantics/Redirect.swift",
"Semantics/Redirected.swift",
"Semantics/Reference/Links.swift",
"Semantics/Reference/Row.swift",
"Semantics/Reference/Small.swift",
"Semantics/Reference/TabNavigator.swift",
"Semantics/ReferenceResolver.swift",
"Semantics/Semantic.swift",
"Semantics/SemanticAnalysis.swift",
"Semantics/SemanticAnalyzer.swift",
"Semantics/Snippets/Snippet.swift",
"Semantics/Symbol/DeprecationSummary.swift",
"Semantics/Symbol/DocumentationDataVariants+SymbolGraphSymbol.swift",
"Semantics/Symbol/DocumentationDataVariants.swift",
"Semantics/Symbol/PlatformName.swift",
"Semantics/Symbol/Relationship.swift",
"Semantics/Symbol/Symbol.swift",
"Semantics/Symbol/UnifiedSymbol+Extensions.swift",
"Semantics/Technology/Resources/Resources.swift",
"Semantics/Technology/Resources/Tile.swift",
"Semantics/Technology/TutorialTableOfContents.swift",
"Semantics/Technology/Volume/Chapter/Chapter.swift",
"Semantics/Technology/Volume/Chapter/TutorialReference.swift",
"Semantics/Technology/Volume/Volume.swift",
"Semantics/TechnologyBound.swift",
"Semantics/Timed.swift",
"Semantics/Titled.swift",
"Semantics/Tutorial/Assessments/Assessments.swift",
"Semantics/Tutorial/Assessments/Multiple Choice/Choice/Choice.swift",
"Semantics/Tutorial/Assessments/Multiple Choice/Choice/Justification.swift",
"Semantics/Tutorial/Assessments/Multiple Choice/MultipleChoice.swift",
"Semantics/Tutorial/Tasks/Steps/Code.swift",
"Semantics/Tutorial/Tasks/Steps/Step.swift",
"Semantics/Tutorial/Tasks/Steps/Steps.swift",
"Semantics/Tutorial/Tasks/TutorialSection.swift",
"Semantics/Tutorial/Tutorial.swift",
"Semantics/Tutorial/XcodeRequirement.swift",
"Semantics/TutorialArticle/Stack.swift",
"Semantics/TutorialArticle/TutorialArticle.swift",
"Semantics/Visitor/SemanticVisitor.swift",
"Semantics/Walker/SemanticWalker.swift",
"Semantics/Walker/Walkers/SemanticTreeDumper.swift",
"Servers/DocumentationSchemeHandler.swift",
"Servers/FileServer.swift",
"SourceRepository/SourceRepository.swift",
"Utility/Checksum.swift",
"Utility/Collection+ConcurrentPerform.swift",
"Utility/CollectionChanges.swift",
"Utility/DataStructures/BidirectionalMap.swift",
"Utility/DataStructures/GroupedSequence.swift",
"Utility/DispatchGroup+Async.swift",
"Utility/Errors/DescribedError.swift",
"Utility/Errors/ErrorWithProblems.swift",
"Utility/ExternalIdentifier.swift",
"Utility/FeatureFlags.swift",
"Utility/FileManagerProtocol+FilesSequence.swift",
"Utility/FileManagerProtocol.swift",
"Utility/FoundationExtensions/Array+baseType.swift",
"Utility/FoundationExtensions/AutoreleasepoolShim.swift",
"Utility/FoundationExtensions/CharacterSet.swift",
"Utility/FoundationExtensions/Collection+indexed.swift",
"Utility/FoundationExtensions/Dictionary+TypedValues.swift",
"Utility/FoundationExtensions/NoOpSignposterShim.swift",
"Utility/FoundationExtensions/Optional+baseType.swift",
"Utility/FoundationExtensions/PlainTextShim.swift",
"Utility/FoundationExtensions/RangeReplaceableCollection+Group.swift",
"Utility/FoundationExtensions/SendableMetatypeShim.swift",
"Utility/FoundationExtensions/Sequence+Categorize.swift",
"Utility/FoundationExtensions/Sequence+FirstMap.swift",
"Utility/FoundationExtensions/Sequence+RenderBlockContentElemenet.swift",
"Utility/FoundationExtensions/SortByKeyPath.swift",
"Utility/FoundationExtensions/String+Capitalization.swift",
"Utility/FoundationExtensions/String+Hashing.swift",
"Utility/FoundationExtensions/String+Path.swift",
"Utility/FoundationExtensions/String+SingleQuoted.swift",
"Utility/FoundationExtensions/String+Splitting.swift",
"Utility/FoundationExtensions/String+Whitespace.swift",
"Utility/FoundationExtensions/StringCollection+List.swift",
"Utility/FoundationExtensions/URL+IsAbsoluteWebURL.swift",
"Utility/FoundationExtensions/URL+Relative.swift",
"Utility/FoundationExtensions/URL+WithFragment.swift",
"Utility/FoundationExtensions/URL+WithoutHostAndPortAndScheme.swift",
"Utility/Graphs/DirectedGraph+Cycles.swift",
"Utility/Graphs/DirectedGraph+Paths.swift",
"Utility/Graphs/DirectedGraph+Traversal.swift",
"Utility/Graphs/DirectedGraph.swift",
"Utility/LMDB/LMDB+Database.swift",
"Utility/LMDB/LMDB+Environment.swift",
"Utility/LMDB/LMDB+Error.swift",
"Utility/LMDB/LMDB+Transaction.swift",
"Utility/LMDB/LMDB.swift",
"Utility/Language/EnglishLanguage.swift",
"Utility/Language/NativeLanguage.swift",
"Utility/ListItemUpdatable.swift",
"Utility/LogHandle.swift",
"Utility/MarkupExtensions/AnyLink.swift",
"Utility/MarkupExtensions/BlockDirectiveExtensions.swift",
"Utility/MarkupExtensions/DocumentExtensions.swift",
"Utility/MarkupExtensions/ImageExtensions.swift",
"Utility/MarkupExtensions/ListItemExtractor.swift",
"Utility/MarkupExtensions/MarkupChildrenExtensions.swift",
"Utility/MarkupExtensions/SourceRangeExtensions.swift",
"Utility/NearMiss.swift",
"Utility/RenderNodeDataExtractor.swift",
"Utility/SemanticVersion+Comparable.swift",
"Utility/SymbolGraphAvailability+Filter.swift",
"Utility/Synchronization.swift",
"Utility/ValidatedURL.swift",
"Utility/Version.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/swiftlang/swift-docc/main
Repository: swiftlang/swift-docc
Swift version used: 6.1
.package(url: "https://github.com/swiftlang/swift-docc-plugin.git", from: "1.2.0"),
Target: SwiftDocC
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'SwiftDocC'...
Finished extracting symbol information for 'SwiftDocC'. (14.37s)
Building documentation for 'SwiftDocC'...
warning: Parameter 'isExternal' is missing documentation
--> ../Indexing/Navigator/NavigatorItem.swift:89:71-89:71
87 | - platformMask: The mask indicating for which platform the page is available.
88 | - availabilityID: The identifier of the availability information of the page.
89 + - icon: A reference to a custom image for this navigator item.
| ╰─suggestion: Document 'isExternal' parameter
90 | */
91 | public init(pageType: UInt8, languageID: UInt8, title: String, platformMask: UInt64, availabilityID: UInt64, icon: RenderReferenceIdentifier? = nil, isExternal: Bool = false) {
warning: Parameter 'highlight' is missing documentation
--> ../Model/Rendering/Symbol/DeclarationsRenderSection.swift:132:86-132:86
130 | /// - kind: The kind of the token.
131 | /// - identifier: If the token refers to a known symbol, its identifier.
132 + /// - preciseIdentifier: If the refers to a symbol, its precise identifier.
| ╰─suggestion: Document 'highlight' parameter
133 | public init(
134 | text: String,
warning: 'RESTParameter' doesn't exist at '/SwiftDocC/RESTBodyRenderSection/parameters'
--> ../Model/Rendering/Symbol/RESTBodyRenderSection.swift:31:56-31:69
29 | ///
30 | /// If the body content is `multipart/form-data` encoded, it contains a list
31 + /// of parameters. Each of these parameters is a ``RESTParameter``
32 | /// and it has its own value-content encoding, name, type, and description.
33 | public let parameters: [RenderProperty]?
warning: 'linking-to-symbols-and-other-content' doesn't exist at '/SwiftDocC/AlternateRepresentation'
--> ../Semantics/Metadata/AlternateRepresentation.swift:32:61-32:97
30 | /// ```
31 | /// If you prefer, you can wrap the symbol link in a set of double backticks (\`\`), or use any other supported syntax for linking to symbols.
32 + /// For more information about linking to symbols, see <doc:linking-to-symbols-and-other-content>.
33 | ///
34 | /// This provides a hint to the renderer as to the alternate language representations for the current symbol.
warning: 'formatting-your-documentation-content' doesn't exist at '/SwiftDocC/TechnologyRoot'
--> ../Semantics/Metadata/TechnologyRoot.swift:40:12-40:49
38 | /// ## See Also
39 | ///
40 + /// - <doc:formatting-your-documentation-content>
41 | public final class TechnologyRoot: Semantic, AutomaticDirectiveConvertible {
42 | public static let introducedVersion = "5.5"
warning: 'Available' doesn't exist at '/SwiftDocC/DeprecationSummary'
--> ../Semantics/Symbol/DeprecationSummary.swift:33:85-33:94
31 | /// > Tip:
32 | /// > If you are writing a custom deprecation summary message for an API or documentation page that isn't already deprecated,
33 + /// > you should also deprecate it—using in-source annotations when possible or ``Available`` directives when in-source annotations aren't available—so that the reader knows the version when you deprecated that API or documentation page.
34 | public final class DeprecationSummary: Semantic, AutomaticDirectiveConvertible {
35 | public static let introducedVersion = "5.5"
warning: 'BundleFeatureFlags' doesn't exist at '/SwiftDocC/DocumentationBundle/Info'
--> SwiftDocC/AddingFeatureFlags.md:33:28-33:46
31 | experimental overloaded symbol presentation can affect how a bundle curates its symbols due to the
32 | creation of overload group pages. These flags should also be added to the
33 + ``DocumentationBundle/Info/BundleFeatureFlags`` type, so that they can be parsed out of a bundle's
34 | Info.plist.
35 |
warning: 'loadFlagsFromBundle(_:)' doesn't exist at '/SwiftDocC/FeatureFlags'
--> SwiftDocC/AddingFeatureFlags.md:38:16-38:39
36 | Feature flags that are loaded from an Info.plist file are saved into the global feature flags while
37 | the bundle is being registered. To ensure that your new feature flag is properly loaded, update the
38 + ``FeatureFlags/loadFlagsFromBundle(_:)`` method to load your new field into the global flags.
39 |
40 | <!-- Copyright (c) 2024 Apple Inc and the Swift Project authors. All Rights Reserved. -->
warning: 'InputsProvider' doesn't exist at '/SwiftDocC/DocumentationContext'
--> SwiftDocC/CompilerPipeline.md:13:50-13:64
11 | ### Discovery
12 |
13 + DocC starts by creating a ``DocumentationContext/InputsProvider`` to discover the inputs from the user-provided command line arguments. These inputs are:
14 |
15 | - Markup files, tutorial files, and assets (for example images)
warning: 'init(bundle:dataProvider:diagnosticEngine:configuration:)' doesn't exist at '/SwiftDocC/DocumentationContext'
--> SwiftDocC/DocumentationContextGroup.md:18:28-18:85
16 | ### Creating a Context
17 |
18 + Use ``DocumentationContext/init(bundle:dataProvider:diagnosticEngine:configuration:)`` to create a context for a given bundle:
| ╰─suggestion: Replace 'init(bundle:dataProvider:diagnosticEngine:configuration:)' with 'init(dataProvider:diagnosticEngine:configuration:)'
19 |
20 | ```swift
warning: 'AttributedCodeListing' doesn't exist at '/SwiftDocC/DocumentationContextGroup'
--> SwiftDocC/DocumentationContextGroup.md:77:5-77:26
75 | ### Code Listings
76 |
77 + - ``AttributedCodeListing``
78 | - ``UnresolvedCodeListingReference``
79 | - ``CodeColorsPreferenceKey``
warning: 'UnresolvedCodeListingReference' doesn't exist at '/SwiftDocC/DocumentationContextGroup'
--> SwiftDocC/DocumentationContextGroup.md:78:5-78:35
76 |
77 | - ``AttributedCodeListing``
78 + - ``UnresolvedCodeListingReference``
79 | - ``CodeColorsPreferenceKey``
80 | - ``SRGBColor``
warning: 'InputsProvider' doesn't exist at '/SwiftDocC/DocumentationContext'
--> SwiftDocC/InputDiscovery.md:7:26-7:40
5 | ## Discussion
6 |
7 + A ``DocumentationContext/InputsProvider`` discovers documentation catalogs on the file system and creates a ``DocumentationBundle`` from the discovered catalog content.
8 |
9 | ```swift
warning: 'InputsProvider' doesn't exist at '/SwiftDocC/DocumentationContext'
--> SwiftDocC/InputDiscovery.md:40:24-40:38
38 | It's common to want combine these two strategies and require that they discover a ``DocumentationBundle``.
39 | For this use-case, use the
40 + ``DocumentationContext/InputsProvider/inputsAndDataProvider(startingPoint:allowArbitraryCatalogDirectories:options:)`` method:
41 |
42 | ```swift
warning: 'DataProvider' doesn't exist at '/SwiftDocC/InputDiscovery'
--> SwiftDocC/InputDiscovery.md:59:9-59:21
57 | A ``DocumentationBundle`` represents the list of "discovered" input files--categorized by their kind--to use as documentation inputs.
58 |
59 + Use a ``DataProvider`` that the ``DocumentationContext/InputsProvider`` returned alongside the bundle to read the files in the bundle.
60 |
61 | ## Topics
warning: 'InputsProvider' doesn't exist at '/SwiftDocC/DocumentationContext'
--> SwiftDocC/InputDiscovery.md:59:56-59:70
57 | A ``DocumentationBundle`` represents the list of "discovered" input files--categorized by their kind--to use as documentation inputs.
58 |
59 + Use a ``DataProvider`` that the ``DocumentationContext/InputsProvider`` returned alongside the bundle to read the files in the bundle.
60 |
61 | ## Topics
warning: 'InputsProvider' doesn't exist at '/SwiftDocC/DocumentationContext'
--> SwiftDocC/InputDiscovery.md:65:26-65:40
63 | ### Input Discovery
64 |
65 + - ``DocumentationContext/InputsProvider``
66 | - ``DocumentationContext/InputsProvider/inputsAndDataProvider(startingPoint:allowArbitraryCatalogDirectories:options:)``
67 |
warning: 'InputsProvider' doesn't exist at '/SwiftDocC/DocumentationContext'
--> SwiftDocC/InputDiscovery.md:66:26-66:40
64 |
65 | - ``DocumentationContext/InputsProvider``
66 + - ``DocumentationContext/InputsProvider/inputsAndDataProvider(startingPoint:allowArbitraryCatalogDirectories:options:)``
67 |
68 | ### Documentation Bundle
warning: 'TitleStyle' doesn't exist at '/SwiftDocC/SymbolReferenceRendering'
--> SwiftDocC/RenderingModel/SymbolReferenceRendering.md:46:5-46:15
44 | - ``ParameterRenderSection``
45 | - ``ParametersRenderSection``
46 + - ``TitleStyle``
47 | - ``PossibleValuesRenderSection``
48 | - ``PropertiesRenderSection``
Finished building documentation for 'SwiftDocC' (2.97s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-docc/main
Building for debugging...
[0/7] Write sources
[1/7] Write snippet-extract-tool-entitlement.plist
[2/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/62] Compiling SymbolKit Identifier.swift
[7/62] Compiling SymbolKit KindIdentifier.swift
[8/62] Compiling SymbolKit Location.swift
[9/62] Compiling SymbolKit Mutability.swift
[10/62] Compiling SymbolKit Names.swift
[11/62] Compiling SymbolKit SourceRange.swift
[12/62] Compiling SymbolKit Metadata.swift
[13/62] Compiling SymbolKit Module.swift
[14/62] Compiling SymbolKit OperatingSystem.swift
[15/62] Compiling SymbolKit Platform.swift
[16/62] Compiling SymbolKit ReferenceLocation.swift
[17/67] Compiling SymbolKit Mixin+Equals.swift
[18/67] Compiling SymbolKit Mixin+Hash.swift
[19/67] Compiling SymbolKit Mixin.swift
[20/67] Compiling SymbolKit AnyScalar.swift
[21/67] Compiling SymbolKit LineList.swift
[22/67] Compiling SymbolKit Position.swift
[23/67] Compiling SymbolKit OverloadData.swift
[24/67] Compiling SymbolKit PlistDetails.swift
[25/67] Compiling SymbolKit SPI.swift
[26/67] Compiling SymbolKit Snippet.swift
[27/67] Compiling SymbolKit Extension.swift
[28/67] Compiling SymbolKit Relationship.swift
[29/67] Compiling SymbolKit RelationshipKind.swift
[30/67] Compiling SymbolKit SourceOrigin.swift
[31/67] Compiling SymbolKit GenericConstraints.swift
[32/67] Compiling SymbolKit Swift.swift
[33/67] Compiling SymbolKit SemanticVersion.swift
[34/67] Emitting module SymbolKit
[35/67] Compiling SymbolKit AccessControl.swift
[36/67] Compiling SymbolKit AlternateDeclarations.swift
[37/67] Compiling SymbolKit Availability.swift
[38/67] Compiling SymbolKit AvailabilityItem.swift
[39/67] Compiling SymbolKit Domain.swift
[40/67] Compiling SymbolKit DeclarationFragments+Simplify.swift
[41/67] Compiling SymbolKit SymbolKind.swift
[42/67] Compiling SymbolKit ValueConstraints.swift
[43/67] Compiling SymbolKit SymbolGraph+Overloads.swift
[44/67] Compiling SymbolKit SymbolGraph.swift
[45/67] Compiling SymbolKit GraphCollector.swift
[46/67] Compiling SymbolKit DeclarationFragments.swift
[47/67] Compiling SymbolKit Fragment.swift
[48/67] Compiling SymbolKit FragmentKind.swift
[49/67] Compiling SymbolKit FunctionParameter.swift
[50/67] Compiling SymbolKit FunctionSignature.swift
[51/67] Compiling SymbolKit HTTP.swift
[52/67] Compiling SymbolKit GenericConstraint.swift
[53/67] Compiling SymbolKit GenericParameter.swift
[54/67] Compiling SymbolKit Generics.swift
[55/67] Compiling SymbolKit Namespace.swift
[56/67] Compiling SymbolKit Symbol.swift
[57/67] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[58/67] Compiling SymbolKit UnifiedSymbol.swift
[59/67] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[60/67] Compiling SymbolKit UnifiedSymbolGraph+Overloads.swift
[61/67] Compiling SymbolKit UnifiedSymbolGraph.swift
[62/67] Compiling Snippets SnippetParser.swift
[63/67] Emitting module Snippets
[64/67] Compiling Snippets Snippet.swift
[65/71] Compiling snippet_extract SymbolGraph+Snippet.swift
[66/71] Compiling snippet_extract URL+Status.swift
[67/71] Emitting module snippet_extract
[68/71] Compiling snippet_extract SnippetBuildCommand.swift
[68/71] Write Objects.LinkFileList
[69/71] Linking snippet-extract-tool
[70/71] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.24s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/189] Compiling Markdown SourceLocation.swift
[3/189] Compiling Markdown Emphasis.swift
[4/189] Compiling Markdown Image.swift
[5/189] Compiling Markdown InlineAttributes.swift
[6/189] Compiling Markdown Link.swift
[7/189] Compiling Markdown Strikethrough.swift
[8/189] Compiling Markdown Strong.swift
[9/189] Compiling Markdown CustomInline.swift
[10/197] Compiling Markdown DoxygenReturns.swift
[11/197] Compiling Markdown ListItem.swift
[12/197] Compiling Markdown OrderedList.swift
[13/197] Compiling Markdown UnorderedList.swift
[14/197] Compiling Markdown Paragraph.swift
[15/197] Compiling Markdown CodeBlock.swift
[16/197] Compiling Markdown HTMLBlock.swift
[17/197] Compiling Markdown Heading.swift
[18/197] Compiling Markdown RawMarkup.swift
[19/197] Compiling Markdown BlockDirective.swift
[20/197] Compiling Markdown BlockQuote.swift
[21/197] Compiling Markdown CustomBlock.swift
[22/197] Compiling Markdown DoxygenAbstract.swift
[23/197] Compiling Markdown DoxygenDiscussion.swift
[24/197] Compiling Markdown DoxygenNote.swift
[25/197] Compiling Markdown DoxygenParameter.swift
[26/197] Compiling SymbolKit GenericConstraint.swift
[27/197] Compiling SymbolKit GenericParameter.swift
[28/197] Compiling Markdown LineBreak.swift
[29/197] Compiling Markdown SoftBreak.swift
[30/197] Compiling Markdown SymbolLink.swift
[31/197] Compiling Markdown Text.swift
[32/197] Compiling Markdown Aside.swift
[33/197] Compiling Markdown BlockDirectiveParser.swift
[34/197] Compiling Markdown ChildIndexPath.swift
[35/197] Compiling Markdown DirectiveArgument.swift
[36/197] Compiling Markdown Document.swift
[37/197] Compiling Markdown LiteralMarkup.swift
[38/197] Compiling Markdown Markup.swift
[39/197] Compiling Markdown MarkupChildren.swift
[40/197] Compiling Markdown MarkupData.swift
[41/197] Compiling Markdown PlainTextConvertibleMarkup.swift
[42/197] Compiling Markdown BlockContainer.swift
[43/197] Compiling Markdown BlockMarkup.swift
[44/197] Compiling Markdown InlineContainer.swift
[45/197] Compiling Markdown InlineMarkup.swift
[46/197] Compiling Markdown ListItemContainer.swift
[47/197] Compiling Markdown AtomicCounter.swift
[48/197] Compiling Markdown CharacterExtensions.swift
[49/197] Compiling Crypto HPKE-Errors.swift
[50/197] Compiling Markdown CommonMarkConverter.swift
[51/197] Compiling Markdown LazySplitLines.swift
[52/197] Compiling Markdown ParseOptions.swift
[53/197] Compiling Markdown RangeAdjuster.swift
[54/197] Compiling Markdown RangerTracker.swift
[55/197] Compiling Markdown MarkupRewriter.swift
[56/197] Compiling Markdown BasicBlockContainer.swift
[57/197] Compiling Markdown BasicInlineContainer.swift
[58/197] Compiling Crypto Digest_boring.swift
[59/197] Compiling Crypto Digest.swift
[60/197] Compiling Crypto Digests.swift
[61/197] Compiling Crypto HashFunctions.swift
[62/197] Compiling Crypto HashFunctions_SHA2.swift
[63/197] Compiling Crypto HPKE-AEAD.swift
[64/197] Compiling Crypto HPKE-Ciphersuite.swift
[65/197] Compiling Crypto HPKE-KDF.swift
[66/197] Compiling Markdown ThematicBreak.swift
[67/197] Compiling Markdown Table.swift
[68/197] Compiling Markdown TableBody.swift
[69/197] Compiling Markdown TableCell.swift
[70/197] Compiling Markdown TableCellContainer.swift
[71/197] Compiling Markdown TableHead.swift
[72/197] Compiling Markdown TableRow.swift
[73/197] Compiling Markdown Replacement.swift
[74/197] Emitting module Crypto
[88/209] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[89/209] Compiling SymbolKit UnifiedSymbol.swift
[90/209] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[91/209] Compiling SymbolKit UnifiedSymbolGraph+Overloads.swift
[92/209] Compiling SymbolKit UnifiedSymbolGraph.swift
[150/209] Emitting module SymbolKit
[151/209] Compiling Crypto RNG_boring.swift
[152/209] Compiling Crypto SafeCompare_boring.swift
[153/209] Compiling Crypto Zeroization_boring.swift
[154/209] Compiling Crypto PrettyBytes.swift
[155/209] Compiling Crypto SafeCompare.swift
[156/209] Compiling Crypto SecureBytes.swift
[157/209] Compiling Crypto Zeroization.swift
[158/209] Compiling Crypto resource_bundle_accessor.swift
[176/209] Emitting module Markdown
[189/209] Compiling Markdown CollectionExtensions.swift
[190/209] Compiling Markdown StringExtensions.swift
[191/209] Compiling Markdown MarkupVisitor.swift
[192/209] Compiling Markdown MarkupWalker.swift
[193/209] Compiling Markdown HTMLFormatter.swift
[194/209] Compiling Markdown MarkupFormatter.swift
[195/209] Compiling Markdown MarkupTreeDumper.swift
[210/434] Compiling SwiftDocC CodableContentSection.swift
[211/434] Compiling SwiftDocC CodableRenderReference.swift
[212/434] Compiling SwiftDocC CodableRenderSection.swift
[213/434] Compiling SwiftDocC RenderMetadata.swift
[214/434] Compiling SwiftDocC RenderNode+Codable.swift
[215/434] Compiling SwiftDocC RenderNodeTranslator.swift
[216/434] Compiling SwiftDocC RenderNodeVariant.swift
[217/434] Compiling SwiftDocC RenderReferenceStore.swift
[218/434] Compiling SwiftDocC RenderSection.swift
[219/434] Compiling SwiftDocC AttributesSectionTranslator.swift
[220/434] Compiling SwiftDocC DeclarationsSectionTranslator.swift
[221/434] Compiling SwiftDocC DictionaryKeysSectionTranslator.swift
[222/434] Compiling SwiftDocC DiscussionSectionTranslator.swift
[223/434] Compiling SwiftDocC HTTPBodySectionTranslator.swift
[224/434] Compiling SwiftDocC HTTPEndpointSectionTranslator.swift
[225/434] Compiling SwiftDocC HTTPParametersSectionTranslator.swift
[226/434] Compiling SwiftDocC HTTPResponsesSectionTranslator.swift
[227/434] Compiling SwiftDocC MentionsSectionTranslator.swift
[228/434] Compiling SwiftDocC ParametersSectionTranslator.swift
[229/434] Compiling SwiftDocC PlistDetailsSectionTranslator.swift
[230/434] Compiling SwiftDocC PossibleValuesSectionTranslator.swift
[231/434] Compiling SwiftDocC RenderSectionTranslator.swift
[232/434] Compiling SwiftDocC ReturnsSectionTranslator.swift
[233/434] Compiling SwiftDocC SemanticVersion.swift
[234/458] Compiling SwiftDocC AvailabilityIndex+Ext.swift
[235/458] Compiling SwiftDocC AvailabilityIndex.swift
[236/458] Compiling SwiftDocC NavigatorIndex+Ext.swift
[237/458] Compiling SwiftDocC NavigatorIndex.swift
[238/458] Compiling SwiftDocC NavigatorItem.swift
[239/458] Compiling SwiftDocC NavigatorTree.swift
[240/458] Compiling SwiftDocC RenderNode+NavigatorIndex.swift
[241/458] Compiling SwiftDocC RenderBlockContent+TextIndexing.swift
[242/458] Compiling SwiftDocC RenderIndex.swift
[243/458] Compiling SwiftDocC RenderInlineContent+TextIndexing.swift
[244/458] Compiling SwiftDocC RenderNode+Indexable.swift
[245/458] Compiling SwiftDocC RenderNode+Relationships.swift
[246/458] Compiling SwiftDocC RenderSection+TextIndexing.swift
[247/458] Compiling SwiftDocC TutorialSectionsRenderSection+Indexable.swift
[248/458] Compiling SwiftDocC BundleData.swift
[249/458] Compiling SwiftDocC DataAssetManager.swift
[250/458] Compiling SwiftDocC SVGIDExtractor.swift
[251/458] Compiling SwiftDocC CodeColors.swift
[252/458] Compiling SwiftDocC CodeColorsPreferenceKey.swift
[253/458] Compiling SwiftDocC SRGBColor.swift
[254/458] Compiling SwiftDocC CommunicationBridge.swift
[255/458] Compiling SwiftDocC AnyCodable.swift
[256/458] Compiling SwiftDocC JSON.swift
[257/458] Compiling SwiftDocC Message+Codable.swift
[258/458] Compiling SwiftDocC Message.swift
[259/482] Compiling SwiftDocC MessageType.swift
[260/482] Compiling SwiftDocC WebKitCommunicationBridge.swift
[261/482] Compiling SwiftDocC ContentCache.swift
[262/482] Compiling SwiftDocC DocumentationContext+Deprecated.swift
[263/482] Compiling SwiftDocC DocumentationContext+Configuration.swift
[264/482] Compiling SwiftDocC ConvertActionConverter.swift
[265/482] Compiling SwiftDocC ConvertOutputConsumer.swift
[266/482] Compiling SwiftDocC CoverageDataEntry.swift
[267/482] Compiling SwiftDocC ANSIAnnotation.swift
[268/482] Compiling SwiftDocC Diagnostic.swift
[269/482] Compiling SwiftDocC DiagnosticConsoleWriter.swift
[270/482] Compiling SwiftDocC DiagnosticConsumer.swift
[271/482] Compiling SwiftDocC DiagnosticEngine.swift
[272/482] Compiling SwiftDocC DiagnosticFile.swift
[273/482] Compiling SwiftDocC DiagnosticFileWriter.swift
[274/482] Compiling SwiftDocC DiagnosticFormattingOptions.swift
[275/482] Compiling SwiftDocC DiagnosticNote.swift
[276/482] Compiling SwiftDocC DiagnosticSeverity.swift
[277/482] Compiling SwiftDocC ParseDirectiveArguments.swift
[278/482] Compiling SwiftDocC Problem.swift
[279/482] Compiling SwiftDocC Replacement.swift
[280/482] Compiling SwiftDocC Solution.swift
[281/482] Compiling SwiftDocC SourcePosition.swift
[282/482] Compiling SwiftDocC TerminalHelper.swift
[283/482] Compiling SwiftDocC DocumentationBundle+Identifier.swift
[284/482] Emitting module SwiftDocC
[285/530] Compiling SwiftDocC PathHierarchy.swift
[286/530] Compiling SwiftDocC PathHierarchyBasedLinkResolver+Breadcrumbs.swift
[287/530] Compiling SwiftDocC PathHierarchyBasedLinkResolver+Overloads.swift
[288/530] Compiling SwiftDocC PathHierarchyBasedLinkResolver.swift
[289/530] Compiling SwiftDocC NodeURLGenerator.swift
[290/530] Compiling SwiftDocC AccessControl+Comparable.swift
[291/530] Compiling SwiftDocC ExtendedTypeFormatExtension.swift
[292/530] Compiling SwiftDocC ExtendedTypeFormatTransformation.swift
[293/530] Compiling SwiftDocC GeneratedDocumentationTopics.swift
[294/530] Compiling SwiftDocC ResolvedTopicReference+Symbol.swift
[295/530] Compiling SwiftDocC SymbolGraphConcurrentDecoder.swift
[296/530] Compiling SwiftDocC SymbolGraphLoader.swift
[297/530] Compiling SwiftDocC SymbolGraphRelationshipsBuilder.swift
[298/530] Compiling SwiftDocC SymbolReference.swift
[299/530] Compiling SwiftDocC UnresolvedTopicReference+Symbol.swift
[300/530] Compiling SwiftDocC AutomaticCuration.swift
[301/530] Compiling SwiftDocC TopicGraph.swift
[302/530] Compiling SwiftDocC DefaultAvailability.swift
[303/530] Compiling SwiftDocC DocumentationBundle+Info.swift
[304/530] Compiling SwiftDocC DocumentationWorkspace.swift
[305/530] Compiling SwiftDocC DocumentationWorkspaceDataProvider.swift
[306/530] Compiling SwiftDocC FeatureFlags+Info.swift
[307/530] Compiling SwiftDocC FileSystemProvider.swift
[308/530] Compiling SwiftDocC GeneratedDataProvider.swift
[309/530] Compiling SwiftDocC LocalFileSystemDataProvider+BundleDiscovery.swift
[310/530] Compiling SwiftDocC RenderHierarchy.swift
[311/530] Compiling SwiftDocC RenderHierarchyChapter.swift
[312/530] Compiling SwiftDocC RenderHierarchyLandmark.swift
[313/530] Compiling SwiftDocC RenderHierarchyTranslator.swift
[314/530] Compiling SwiftDocC RenderHierarchyTutorial.swift
[315/530] Compiling SwiftDocC RenderReferenceHierarchy.swift
[316/530] Compiling SwiftDocC RenderTutorialsHierarchy.swift
[317/530] Compiling SwiftDocC PresentationURLGenerator.swift
[318/530] Compiling SwiftDocC AssetReferences.swift
[319/530] Compiling SwiftDocC FileReference.swift
[320/530] Compiling SwiftDocC ImageReference.swift
[321/530] Compiling SwiftDocC LinkReference.swift
[322/530] Compiling SwiftDocC MediaReference.swift
[323/530] Compiling SwiftDocC RenderReference.swift
[324/530] Compiling SwiftDocC TopicColor.swift
[325/530] Compiling SwiftDocC TopicImage.swift
[326/530] Compiling SwiftDocC TopicRenderReference.swift
[327/530] Compiling SwiftDocC UnresolvedReference.swift
[328/530] Compiling SwiftDocC VideoReference.swift
[329/530] Compiling SwiftDocC RenderContentCompiler.swift
[330/530] Compiling SwiftDocC RenderContentConvertible.swift
[331/530] Compiling SwiftDocC RenderContext.swift
[332/530] Compiling SwiftDocC RenderNode.Tag.swift
[333/530] Compiling SwiftDocC RenderNode.swift
[334/530] Compiling SwiftDocC AnyMetadata.swift
[335/578] Compiling SwiftDocC Section.swift
[336/578] Compiling SwiftDocC Abstract.swift
[337/578] Compiling SwiftDocC AutomaticTaskGroupSection.swift
[338/578] Compiling SwiftDocC DefaultImplementations.swift
[339/578] Compiling SwiftDocC DeprecatedSection.swift
[340/578] Compiling SwiftDocC DictionaryKeysSection.swift
[341/578] Compiling SwiftDocC Discussion.swift
[342/578] Compiling SwiftDocC GroupedSection.swift
[343/578] Compiling SwiftDocC HTTPBodySection.swift
[344/578] Compiling SwiftDocC HTTPEndpointSection.swift
[345/578] Compiling SwiftDocC HTTPParametersSection.swift
[346/578] Compiling SwiftDocC HTTPResponsesSection.swift
[347/578] Compiling SwiftDocC ParametersSection.swift
[348/578] Compiling SwiftDocC PropertyListPossibleValuesSection.swift
[349/578] Compiling SwiftDocC Relationships.swift
[350/578] Compiling SwiftDocC ReturnsSection.swift
[351/578] Compiling SwiftDocC SeeAlso.swift
[352/578] Compiling SwiftDocC Topics.swift
[353/578] Compiling SwiftDocC DictionaryKey.swift
[354/578] Compiling SwiftDocC HTTPBody.swift
[355/578] Compiling SwiftDocC HTTPParameter.swift
[356/578] Compiling SwiftDocC HTTPResponse.swift
[357/578] Compiling SwiftDocC LegacyTag.swift
[358/578] Compiling SwiftDocC Parameter.swift
[359/602] Compiling SwiftDocC Return.swift
[360/602] Compiling SwiftDocC Throw.swift
[361/602] Compiling SwiftDocC SourceLanguage.swift
[362/602] Compiling SwiftDocC TaskGroup.swift
[363/602] Compiling SwiftDocC Abstracted.swift
[364/602] Compiling SwiftDocC Article.swift
[365/602] Compiling SwiftDocC ArticleSymbolMentions.swift
[366/602] Compiling SwiftDocC MarkupConvertible.swift
[367/602] Compiling SwiftDocC Comment.swift
[368/602] Compiling SwiftDocC ContentAndMedia.swift
[369/602] Compiling SwiftDocC DirectiveConvertable.swift
[370/602] Compiling SwiftDocC AutomaticDirectiveConvertible.swift
[371/602] Compiling SwiftDocC ChildDirectiveWrapper.swift
[372/602] Compiling SwiftDocC ChildMarkdownWrapper.swift
[373/602] Compiling SwiftDocC DirectiveArgumentValueConvertible.swift
[374/602] Compiling SwiftDocC DirectiveArgumentWrapper.swift
[375/602] Compiling SwiftDocC DirectiveIndex.swift
[376/602] Compiling SwiftDocC DirectiveMirror.swift
[377/602] Compiling SwiftDocC MarkupContaining.swift
[378/602] Compiling SwiftDocC DirectiveParser.swift
[379/602] Compiling SwiftDocC ExternalMarkupReferenceWalker.swift
[380/602] Compiling SwiftDocC ExternalReferenceWalker.swift
[381/602] Compiling SwiftDocC DeprecatedArgument.swift
[382/602] Compiling SwiftDocC Extract.swift
[383/626] Compiling SwiftDocC DownloadReference.swift
[384/626] Compiling SwiftDocC XcodeRequirementReference.swift
[385/626] Compiling SwiftDocC IntroRenderSection.swift
[386/626] Compiling SwiftDocC TutorialAssessmentsRenderSection.swift
[387/626] Compiling SwiftDocC TutorialSectionsRenderSection.swift
[388/626] Compiling SwiftDocC RenderTile.swift
[389/626] Compiling SwiftDocC CallToActionSection.swift
[390/626] Compiling SwiftDocC ContentAndMediaGroupSection.swift
[391/626] Compiling SwiftDocC ContentAndMediaSection.swift
[392/626] Compiling SwiftDocC ResourcesRenderSection.swift
[393/626] Compiling SwiftDocC VolumeRenderSection.swift
[394/626] Compiling SwiftDocC JSONPatchApplier.swift
[395/626] Compiling SwiftDocC JSONPatchOperation.swift
[396/626] Compiling SwiftDocC JSONPointer.swift
[397/626] Compiling SwiftDocC PatchOperation.swift
[398/626] Compiling SwiftDocC RenderNodeVariantOverridesApplier.swift
[399/626] Compiling SwiftDocC VariantCollection+Coding.swift
[400/626] Compiling SwiftDocC VariantCollection+Symbol.swift
[401/626] Compiling SwiftDocC VariantCollection+Variant.swift
[402/626] Compiling SwiftDocC VariantCollection.swift
[403/626] Compiling SwiftDocC VariantContainer.swift
[404/626] Compiling SwiftDocC VariantOverride.swift
[405/626] Compiling SwiftDocC VariantOverrides.swift
[406/626] Compiling SwiftDocC VariantPatchOperation.swift
[407/650] Compiling SwiftDocC PageColor.swift
[408/650] Compiling SwiftDocC PageImage.swift
[409/650] Compiling SwiftDocC PageKind.swift
[410/650] Compiling SwiftDocC SupportedLanguage.swift
[411/650] Compiling SwiftDocC TechnologyRoot.swift
[412/650] Compiling SwiftDocC TitleHeading.swift
[413/650] Compiling SwiftDocC AutomaticArticleSubheading.swift
[414/650] Compiling SwiftDocC AutomaticSeeAlso.swift
[415/650] Compiling SwiftDocC AutomaticTitleHeading.swift
[416/650] Compiling SwiftDocC Options.swift
[417/650] Compiling SwiftDocC TopicsVisualStyle.swift
[418/650] Compiling SwiftDocC Redirect.swift
[419/650] Compiling SwiftDocC Redirected.swift
[420/650] Compiling SwiftDocC Links.swift
[421/650] Compiling SwiftDocC Row.swift
[422/650] Compiling SwiftDocC Small.swift
[423/650] Compiling SwiftDocC TabNavigator.swift
[424/650] Compiling SwiftDocC ReferenceResolver.swift
[425/650] Compiling SwiftDocC Semantic.swift
[426/650] Compiling SwiftDocC SemanticAnalysis.swift
[427/650] Compiling SwiftDocC SemanticAnalyzer.swift
[428/650] Compiling SwiftDocC Snippet.swift
[429/650] Compiling SwiftDocC DeprecationSummary.swift
[430/650] Compiling SwiftDocC DocumentationDataVariants+SymbolGraphSymbol.swift
[431/674] Compiling SwiftDocC AttributesRenderSection.swift
[432/674] Compiling SwiftDocC AvailabilityRenderMetadataItem.swift
[433/674] Compiling SwiftDocC AvailabilitySortOrder.swift
[434/674] Compiling SwiftDocC ConformanceSection.swift
[435/674] Compiling SwiftDocC ContentRenderSection.swift
[436/674] Compiling SwiftDocC DeclarationRenderSection+SymbolGraph.swift
[437/674] Compiling SwiftDocC DeclarationsRenderSection.swift
[438/674] Compiling SwiftDocC DiffAvailability.swift
[439/674] Compiling SwiftDocC MentionsRenderSection.swift
[440/674] Compiling SwiftDocC ParameterRenderSection.swift
[441/674] Compiling SwiftDocC PossibleValuesRenderSection.swift
[442/674] Compiling SwiftDocC PropertiesRenderSection.swift
[443/674] Compiling SwiftDocC PropertyListDetailsRenderSection.swift
[444/674] Compiling SwiftDocC RESTBodyRenderSection.swift
[445/674] Compiling SwiftDocC RESTEndpointRenderSection.swift
[446/674] Compiling SwiftDocC RESTExampleRenderSection.swift
[447/674] Compiling SwiftDocC RESTParametersRenderSection.swift
[448/674] Compiling SwiftDocC RESTResponseRenderSection.swift
[449/674] Compiling SwiftDocC RelationshipsRenderSection.swift
[450/674] Compiling SwiftDocC SampleDownloadSection.swift
[451/674] Compiling SwiftDocC TaskGroupRenderSection.swift
[452/674] Compiling SwiftDocC TopicsSectionStyle.swift
[453/674] Compiling SwiftDocC TutorialArticleSection.swift
[454/674] Compiling SwiftDocC LineHighlighter.swift
[455/674] Compiling SwiftDocC RenderNodeTransformer.swift
[456/674] Compiling SwiftDocC RenderNodeTransforming.swift
[457/674] Compiling SwiftDocC TopicRenderReferenceEncoder.swift
[458/674] Compiling SwiftDocC DocumentationCoverageOptions.swift
[459/674] Compiling SwiftDocC ConvertService+DataProvider.swift
[460/674] Compiling SwiftDocC ConvertService.swift
[461/674] Compiling SwiftDocC ConvertServiceFallbackResolver.swift
[462/674] Compiling SwiftDocC AbsoluteSymbolLink.swift
[463/674] Compiling SwiftDocC DocCSymbolRepresentable.swift
[464/674] Compiling SwiftDocC LinkCompletionTools.swift
[465/674] Compiling SwiftDocC DocumentationServer+createDefaultServer.swift
[466/674] Compiling SwiftDocC ExternalReferenceResolverServiceClient.swift
[467/674] Compiling SwiftDocC DocumentationServer+Message.swift
[468/674] Compiling SwiftDocC DocumentationServer+MessageType.swift
[469/674] Compiling SwiftDocC DocumentationServer.swift
[470/674] Compiling SwiftDocC DocumentationServerError.swift
[471/674] Compiling SwiftDocC DocumentationServerProtocol.swift
[472/674] Compiling SwiftDocC DocumentationService.swift
[473/674] Compiling SwiftDocC ConvertRequest.swift
[474/674] Compiling SwiftDocC ConvertRequestContextWrapper.swift
[475/674] Compiling SwiftDocC ConvertResponse.swift
[476/674] Compiling SwiftDocC ConvertServiceError.swift
[477/674] Compiling SwiftDocC Indexable.swift
[478/674] Compiling SwiftDocC IndexingError.swift
[479/674] Compiling SwiftDocC IndexingRecord.swift
[480/674] Compiling SwiftDocC LocalFileSystemDataProvider.swift
[481/674] Compiling SwiftDocC PrebuiltLocalFileSystemDataProvider.swift
[482/674] Compiling SwiftDocC LinkDestinationSummary.swift
[483/674] Compiling SwiftDocC AnchorSection.swift
[484/674] Compiling SwiftDocC AvailabilityParser.swift
[485/674] Compiling SwiftDocC BuildMetadata.swift
[486/674] Compiling SwiftDocC DocumentationMarkup.swift
[487/674] Compiling SwiftDocC DocumentationNode.swift
[488/674] Compiling SwiftDocC Identifier.swift
[489/674] Compiling SwiftDocC Kind.swift
[490/674] Compiling SwiftDocC Markup+parsing.swift
[491/674] Compiling SwiftDocC Name.swift
[492/674] Compiling SwiftDocC ParametersAndReturnValidator.swift
[493/674] Compiling SwiftDocC RenderTermLists.swift
[494/674] Compiling SwiftDocC RenderBlockContent+Capitalization.swift
[495/674] Compiling SwiftDocC RenderBlockContent.swift
[496/674] Compiling SwiftDocC RenderContentMetadata.swift
[497/674] Compiling SwiftDocC RenderInlineContent.swift
[498/674] Compiling SwiftDocC AnyRenderReference.swift
[499/674] Compiling SwiftDocC AnyRenderSection.swift
[500/674] Compiling SwiftDocC DifferenceBuilder.swift
[501/674] Compiling SwiftDocC Differences.swift
[502/674] Compiling SwiftDocC RenderNode+Diffable.swift
[503/674] Compiling SwiftDocC DocumentationContentRenderer.swift
[504/674] Compiling SwiftDocC LinkTitleResolver.swift
[505/674] Compiling SwiftDocC DocumentationBundle.swift
[506/674] Compiling SwiftDocC DocumentationBundleFileTypes.swift
[507/674] Compiling SwiftDocC DocumentationContext+Breadcrumbs.swift
[508/674] Compiling SwiftDocC DocumentationContext.swift
[509/674] Compiling SwiftDocC DocumentationConverter.swift
[510/674] Compiling SwiftDocC DocumentationCurator.swift
[511/674] Compiling SwiftDocC KindIdentifier+Curation.swift
[512/674] Compiling SwiftDocC SymbolGraph.Symbol.Location+URL.swift
[513/674] Compiling SwiftDocC ExternalDocumentationSource.swift
[514/674] Compiling SwiftDocC ExternalMetadata.swift
[515/674] Compiling SwiftDocC GlobalExternalSymbolResolver.swift
[516/674] Compiling SwiftDocC OutOfProcessReferenceResolver.swift
[517/674] Compiling SwiftDocC DataProvider.swift
[518/674] Compiling SwiftDocC DocumentationInputsProvider.swift
[519/674] Compiling SwiftDocC ExternalPathHierarchyResolver.swift
[520/674] Compiling SwiftDocC LinkResolver+NavigatorIndex.swift
[521/674] Compiling SwiftDocC LinkResolver.swift
[522/674] Compiling SwiftDocC PathHierarchy+DisambiguatedPaths.swift
[523/674] Compiling SwiftDocC PathHierarchy+Dump.swift
[524/674] Compiling SwiftDocC PathHierarchy+Error.swift
[525/674] Compiling SwiftDocC PathHierarchy+Find.swift
[526/674] Compiling SwiftDocC PathHierarchy+PathComponent.swift
[527/674] Compiling SwiftDocC PathHierarchy+Serialization.swift
[528/674] Compiling SwiftDocC PathHierarchy+TypeSignature.swift
[529/674] Compiling SwiftDocC PathHierarchy+TypeSignatureDisambiguation.swift
[530/674] Compiling SwiftDocC Benchmark.swift
[531/674] Compiling SwiftDocC BenchmarkResults.swift
[532/674] Compiling SwiftDocC Metrics.swift
[533/674] Compiling SwiftDocC Duration.swift
[534/674] Compiling SwiftDocC ExternalTopicsHash.swift
[535/674] Compiling SwiftDocC OutputSize.swift
[536/674] Compiling SwiftDocC PeakMemory.swift
[537/674] Compiling SwiftDocC TopicAnchorHash.swift
[538/674] Compiling SwiftDocC TopicGraphHash.swift
[539/674] Compiling SwiftDocC GeneratedCurationWriter.swift
[540/674] Compiling SwiftDocC Checker.swift
[541/674] Compiling SwiftDocC AbstractContainsFormattedTextOnly.swift
[542/674] Compiling SwiftDocC DuplicateTopicsSection.swift
[543/674] Compiling SwiftDocC InvalidAdditionalTitle.swift
[544/674] Compiling SwiftDocC MissingAbstract.swift
[545/674] Compiling SwiftDocC NonInclusiveLanguageChecker.swift
[546/674] Compiling SwiftDocC NonOverviewHeadingChecker.swift
[547/674] Compiling SwiftDocC SeeAlsoInTopicsHeadingChecker.swift
[548/674] Compiling SwiftDocC DocumentationContextConverter.swift
[549/674] Compiling SwiftDocC DocumentationNodeConverter.swift
[550/674] Compiling SwiftDocC RenderNode+Coding.swift
[551/674] Compiling SwiftDocC RemoveHierarchyTransformation.swift
[552/674] Compiling SwiftDocC RemoveUnusedReferencesTransformation.swift
[553/674] Compiling SwiftDocC RenderNodeTransformationComposition.swift
[554/674] Compiling SwiftDocC RenderNodeTransformationContext.swift
[555/674] Compiling SwiftDocC Dictionary+TypedValues.swift
[556/674] Compiling SwiftDocC NoOpSignposterShim.swift
[557/674] Compiling SwiftDocC Optional+baseType.swift
[558/674] Compiling SwiftDocC PlainTextShim.swift
[559/674] Compiling SwiftDocC RangeReplaceableCollection+Group.swift
[560/674] Compiling SwiftDocC SendableMetatypeShim.swift
[561/674] Compiling SwiftDocC Sequence+Categorize.swift
[562/674] Compiling SwiftDocC Sequence+FirstMap.swift
[563/674] Compiling SwiftDocC Sequence+RenderBlockContentElemenet.swift
[564/674] Compiling SwiftDocC SortByKeyPath.swift
[565/674] Compiling SwiftDocC String+Capitalization.swift
[566/674] Compiling SwiftDocC String+Hashing.swift
[567/674] Compiling SwiftDocC String+Path.swift
[568/674] Compiling SwiftDocC String+SingleQuoted.swift
[569/674] Compiling SwiftDocC String+Splitting.swift
[570/674] Compiling SwiftDocC String+Whitespace.swift
[571/674] Compiling SwiftDocC StringCollection+List.swift
[572/674] Compiling SwiftDocC URL+IsAbsoluteWebURL.swift
[573/674] Compiling SwiftDocC URL+Relative.swift
[574/674] Compiling SwiftDocC URL+WithFragment.swift
[575/674] Compiling SwiftDocC URL+WithoutHostAndPortAndScheme.swift
[576/674] Compiling SwiftDocC DirectedGraph+Cycles.swift
[577/674] Compiling SwiftDocC DirectedGraph+Paths.swift
[578/674] Compiling SwiftDocC DirectedGraph+Traversal.swift
[579/674] Compiling SwiftDocC DocumentationDataVariants.swift
[580/674] Compiling SwiftDocC PlatformName.swift
[581/674] Compiling SwiftDocC Relationship.swift
[582/674] Compiling SwiftDocC Symbol.swift
[583/674] Compiling SwiftDocC UnifiedSymbol+Extensions.swift
[584/674] Compiling SwiftDocC Resources.swift
[585/674] Compiling SwiftDocC Tile.swift
[586/674] Compiling SwiftDocC TutorialTableOfContents.swift
[587/674] Compiling SwiftDocC Chapter.swift
[588/674] Compiling SwiftDocC TutorialReference.swift
[589/674] Compiling SwiftDocC Volume.swift
[590/674] Compiling SwiftDocC TechnologyBound.swift
[591/674] Compiling SwiftDocC Timed.swift
[592/674] Compiling SwiftDocC Titled.swift
[593/674] Compiling SwiftDocC Assessments.swift
[594/674] Compiling SwiftDocC Choice.swift
[595/674] Compiling SwiftDocC Justification.swift
[596/674] Compiling SwiftDocC MultipleChoice.swift
[597/674] Compiling SwiftDocC Code.swift
[598/674] Compiling SwiftDocC Step.swift
[599/674] Compiling SwiftDocC Steps.swift
[600/674] Compiling SwiftDocC TutorialSection.swift
[601/674] Compiling SwiftDocC Tutorial.swift
[602/674] Compiling SwiftDocC XcodeRequirement.swift
[603/674] Compiling SwiftDocC Stack.swift
[604/674] Compiling SwiftDocC TutorialArticle.swift
[605/674] Compiling SwiftDocC SemanticVisitor.swift
[606/674] Compiling SwiftDocC SemanticWalker.swift
[607/674] Compiling SwiftDocC SemanticTreeDumper.swift
[608/674] Compiling SwiftDocC DocumentationSchemeHandler.swift
[609/674] Compiling SwiftDocC FileServer.swift
[610/674] Compiling SwiftDocC SourceRepository.swift
[611/674] Compiling SwiftDocC Checksum.swift
[612/674] Compiling SwiftDocC Collection+ConcurrentPerform.swift
[613/674] Compiling SwiftDocC CollectionChanges.swift
[614/674] Compiling SwiftDocC BidirectionalMap.swift
[615/674] Compiling SwiftDocC GroupedSequence.swift
[616/674] Compiling SwiftDocC DispatchGroup+Async.swift
[617/674] Compiling SwiftDocC DescribedError.swift
[618/674] Compiling SwiftDocC ErrorWithProblems.swift
[619/674] Compiling SwiftDocC ExternalIdentifier.swift
[620/674] Compiling SwiftDocC FeatureFlags.swift
[621/674] Compiling SwiftDocC FileManagerProtocol+FilesSequence.swift
[622/674] Compiling SwiftDocC FileManagerProtocol.swift
[623/674] Compiling SwiftDocC Array+baseType.swift
[624/674] Compiling SwiftDocC AutoreleasepoolShim.swift
[625/674] Compiling SwiftDocC CharacterSet.swift
[626/674] Compiling SwiftDocC Collection+indexed.swift
[627/674] Compiling SwiftDocC HasArgumentOfType.swift
[628/674] Compiling SwiftDocC HasAtLeastOne.swift
[629/674] Compiling SwiftDocC HasAtMostOne.swift
[630/674] Compiling SwiftDocC HasContent.swift
[631/674] Compiling SwiftDocC HasExactlyOne.swift
[632/674] Compiling SwiftDocC HasOnlyKnownArguments.swift
[633/674] Compiling SwiftDocC HasOnlyKnownDirectives.swift
[634/674] Compiling SwiftDocC HasOnlySequentialHeadings.swift
[635/674] Compiling SwiftDocC SymbolKind.Swift.swift
[636/674] Compiling SwiftDocC Intro.swift
[637/674] Compiling SwiftDocC Landmark.swift
[638/674] Compiling SwiftDocC Layout.swift
[639/674] Compiling SwiftDocC MarkupContainer.swift
[640/674] Compiling SwiftDocC MarkupReferenceResolver.swift
[641/674] Compiling SwiftDocC ImageMedia.swift
[642/674] Compiling SwiftDocC Media.swift
[643/674] Compiling SwiftDocC VideoMedia.swift
[644/674] Compiling SwiftDocC AlternateRepresentation.swift
[645/674] Compiling SwiftDocC Availability.swift
[646/674] Compiling SwiftDocC CallToAction.swift
[647/674] Compiling SwiftDocC CustomMetadata.swift
[648/674] Compiling SwiftDocC DisplayName.swift
[649/674] Compiling SwiftDocC DocumentationExtension.swift
[650/674] Compiling SwiftDocC Metadata.swift
[651/674] Compiling SwiftDocC DirectedGraph.swift
[652/674] Compiling SwiftDocC LMDB+Database.swift
[653/674] Compiling SwiftDocC LMDB+Environment.swift
[654/674] Compiling SwiftDocC LMDB+Error.swift
[655/674] Compiling SwiftDocC LMDB+Transaction.swift
[656/674] Compiling SwiftDocC LMDB.swift
[657/674] Compiling SwiftDocC EnglishLanguage.swift
[658/674] Compiling SwiftDocC NativeLanguage.swift
[659/674] Compiling SwiftDocC ListItemUpdatable.swift
[660/674] Compiling SwiftDocC LogHandle.swift
[661/674] Compiling SwiftDocC AnyLink.swift
[662/674] Compiling SwiftDocC BlockDirectiveExtensions.swift
[663/674] Compiling SwiftDocC DocumentExtensions.swift
[664/674] Compiling SwiftDocC ImageExtensions.swift
[665/674] Compiling SwiftDocC ListItemExtractor.swift
[666/674] Compiling SwiftDocC MarkupChildrenExtensions.swift
[667/674] Compiling SwiftDocC SourceRangeExtensions.swift
[668/674] Compiling SwiftDocC NearMiss.swift
[669/674] Compiling SwiftDocC RenderNodeDataExtractor.swift
[670/674] Compiling SwiftDocC SemanticVersion+Comparable.swift
[671/674] Compiling SwiftDocC SymbolGraphAvailability+Filter.swift
[672/674] Compiling SwiftDocC Synchronization.swift
[673/674] Compiling SwiftDocC ValidatedURL.swift
[674/674] Compiling SwiftDocC Version.swift
Build of target: 'SwiftDocC' complete! (10.28s)
Target: SwiftDocCUtilities
Extracting symbol information for 'SwiftDocCUtilities'...
Finished extracting symbol information for 'SwiftDocCUtilities'. (10.31s)
Building documentation for 'SwiftDocCUtilities'...
warning: 'Action' doesn't exist at '/SwiftDocCUtilities'
--> SwiftDocCUtilities.md:7:252-7:258
5 | ## Overview
6 |
7 + SwiftDocCUtilities provides a default, command-line workflow for DocC, powered by Swift [Argument Parser](https://apple.github.io/swift-argument-parser/documentation/argumentparser/). `docc` commands, such as `convert` and `preview`, are conformant ``Action`` types that use DocC to perform documentation tasks.
| ├─suggestion: Replace 'Action' with 'ActionResult'
| ├─suggestion: Replace 'Action' with 'Actions-Design'
| ├─suggestion: Replace 'Action' with 'InitAction'
| ╰─suggestion: Replace 'Action' with 'IndexAction'
8 |
9 | Use SwiftDocCUtilities to build a custom, command-line interface and extend it with additional commands. To add a new sub-command called `example`, create a conformant ``Action`` type, `ExampleAction`, that performs the desired work, and add it as a sub-command. Optionally, you can also reuse any of the provided actions like ``ConvertAction``.
warning: 'Action' doesn't exist at '/SwiftDocCUtilities'
--> SwiftDocCUtilities.md:9:171-9:177
7 | SwiftDocCUtilities provides a default, command-line workflow for DocC, powered by Swift [Argument Parser](https://apple.github.io/swift-argument-parser/documentation/argumentparser/). `docc` commands, such as `convert` and `preview`, are conformant ``Action`` types that use DocC to perform documentation tasks.
8 |
9 + Use SwiftDocCUtilities to build a custom, command-line interface and extend it with additional commands. To add a new sub-command called `example`, create a conformant ``Action`` type, `ExampleAction`, that performs the desired work, and add it as a sub-command. Optionally, you can also reuse any of the provided actions like ``ConvertAction``.
| ├─suggestion: Replace 'Action' with 'ActionResult'
| ├─suggestion: Replace 'Action' with 'Actions-Design'
| ├─suggestion: Replace 'Action' with 'InitAction'
| ╰─suggestion: Replace 'Action' with 'IndexAction'
10 |
11 | ```swift
warning: 'Action' doesn't exist at '/SwiftDocCUtilities'
--> SwiftDocCUtilities.md:39:5-39:11
37 |
38 | ### Actions Design
39 + - ``Action``
| ├─suggestion: Replace 'Action' with 'ActionResult'
| ├─suggestion: Replace 'Action' with 'Actions-Design'
| ├─suggestion: Replace 'Action' with 'InitAction'
| ╰─suggestion: Replace 'Action' with 'IndexAction'
40 | - ``ActionResult``
41 | - ``RecreatingContext``
warning: 'RecreatingContext' doesn't exist at '/SwiftDocCUtilities'
--> SwiftDocCUtilities.md:41:5-41:22
39 | - ``Action``
40 | - ``ActionResult``
41 + - ``RecreatingContext``
42 |
43 | ### Execution Workflow
warning: 'DocumentationBundleOption' doesn't exist at '/SwiftDocCUtilities/Docc'
--> SwiftDocCUtilities/Extensions/Docc.md:12:5-12:30
10 |
11 | - ``DocCArchiveOption``
12 + - ``DocumentationBundleOption``
13 | - ``OutOfProcessLinkResolverOption``
14 | - ``TemplateOption``
Finished building documentation for 'SwiftDocCUtilities' (0.23s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-docc/main
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (1.98s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/52] Compiling Atomics AtomicStorage.swift
[3/52] Compiling Atomics AtomicValue.swift
[4/53] Compiling Atomics AtomicMemoryOrderings.swift
[5/53] Compiling Atomics DoubleWord.swift
[6/53] Compiling Atomics ManagedAtomic.swift
[7/53] Compiling Atomics ManagedAtomicLazyReference.swift
[8/53] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[9/53] Compiling Atomics UnsafeAtomic.swift
[10/53] Compiling Atomics UnsafeAtomicLazyReference.swift
[17/55] Compiling Atomics OptionalRawRepresentable.swift
[18/55] Compiling Atomics RawRepresentable.swift
[19/55] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[20/55] Emitting module _NIOBase64
[21/55] Compiling _NIOBase64 Base64.swift
[22/55] Compiling _NIODataStructures Heap.swift
[23/55] Compiling _NIODataStructures _TinyArray.swift
[24/55] Compiling _NIODataStructures PriorityQueue.swift
[25/55] Compiling NIOConcurrencyHelpers lock.swift
[26/55] Emitting module _NIODataStructures
[27/55] Compiling Atomics IntegerOperations.swift
[28/55] Compiling Atomics Unmanaged extensions.swift
[29/55] Emitting module NIOConcurrencyHelpers
[30/55] Compiling NIOConcurrencyHelpers NIOLock.swift
[31/55] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[32/55] Compiling NIOConcurrencyHelpers atomics.swift
[33/55] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[34/55] Compiling Atomics Primitives.shims.swift
[35/55] Compiling Atomics AtomicInteger.swift
[36/55] Compiling Atomics AtomicOptionalWrappable.swift
[37/55] Compiling Atomics AtomicReference.swift
[38/55] Emitting module InternalCollectionsUtilities
[39/55] Compiling ArgumentParserToolInfo ToolInfo.swift
[40/55] Emitting module ArgumentParserToolInfo
[45/55] Compiling Atomics PointerConformances.swift
[46/55] Compiling Atomics Primitives.native.swift
[47/55] Compiling Atomics AtomicBool.swift
[48/55] Compiling Atomics IntegerConformances.swift
[51/77] Compiling ArgumentParser ParsableCommand.swift
[52/77] Compiling ArgumentParser ArgumentDecoder.swift
[53/77] Compiling ArgumentParser InputOrigin.swift
[54/77] Compiling ArgumentParser Name.swift
[55/110] Compiling DequeModule _DequeBufferHeader.swift
[56/110] Compiling DequeModule _DequeSlot.swift
[57/111] Compiling DequeModule Deque.swift
[58/111] Compiling DequeModule _DequeBuffer.swift
[59/111] Compiling DequeModule _UnsafeWrappedBuffer.swift
[60/111] Compiling ArgumentParser AsyncParsableCommand.swift
[61/111] Compiling ArgumentParser CommandConfiguration.swift
[62/111] Compiling ArgumentParser EnumerableFlag.swift
[63/111] Compiling ArgumentParser ExpressibleByArgument.swift
[64/111] Compiling ArgumentParser ArgumentHelp.swift
[65/111] Compiling ArgumentParser ArgumentVisibility.swift
[66/111] Compiling ArgumentParser CompletionKind.swift
[67/111] Compiling ArgumentParser Errors.swift
[68/115] Compiling DequeModule Deque+Extras.swift
[69/115] Compiling DequeModule Deque+Hashable.swift
[70/115] Compiling DequeModule Deque+Sendable.swift
[71/115] Compiling DequeModule Deque+Testing.swift
[72/115] Compiling DequeModule Deque+Equatable.swift
[73/115] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[74/115] Compiling DequeModule Deque+CustomReflectable.swift
[75/115] Compiling DequeModule Deque+Descriptions.swift
[76/115] Compiling DequeModule Deque._Storage.swift
[77/115] Compiling DequeModule Deque._UnsafeHandle.swift
[78/115] Emitting module Atomics
[79/115] Compiling DequeModule Deque+Codable.swift
[80/115] Compiling DequeModule Deque+Collection.swift
[81/115] Emitting module ArgumentParser
[82/115] Emitting module DequeModule
[87/115] Compiling ArgumentParser ParserError.swift
[88/115] Compiling ArgumentParser SplitArguments.swift
[89/115] Compiling ArgumentParser DumpHelpGenerator.swift
[90/115] Compiling ArgumentParser HelpCommand.swift
[100/115] Compiling ArgumentParser Platform.swift
[101/115] Compiling ArgumentParser SequenceExtensions.swift
[102/115] Compiling ArgumentParser StringExtensions.swift
[103/115] Compiling ArgumentParser Tree.swift
[104/116] Compiling ArgumentParser HelpGenerator.swift
[105/116] Compiling ArgumentParser MessageInfo.swift
[106/116] Compiling ArgumentParser UsageGenerator.swift
[107/116] Compiling ArgumentParser CollectionExtensions.swift
[108/116] Compiling ArgumentParser Flag.swift
[109/116] Compiling ArgumentParser NameSpecification.swift
[110/116] Compiling ArgumentParser Option.swift
[111/116] Compiling ArgumentParser OptionGroup.swift
[112/175] Compiling NIOCore ByteBuffer-core.swift
[113/175] Compiling NIOCore ByteBuffer-hexdump.swift
[114/175] Compiling NIOCore ByteBuffer-int.swift
[115/175] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[116/175] Compiling NIOCore GlobalSingletons.swift
[117/175] Compiling NIOCore IO.swift
[118/175] Compiling NIOCore IOData.swift
[119/175] Compiling NIOCore IPProtocol.swift
[120/175] Compiling NIOCore IntegerBitPacking.swift
[121/175] Compiling NIOCore IntegerTypes.swift
[122/175] Compiling NIOCore ConvenienceOptionSupport.swift
[123/175] Compiling NIOCore DeadChannel.swift
[124/175] Compiling NIOCore DispatchQueue+WithFuture.swift
[125/175] Compiling NIOCore EventLoop+Deprecated.swift
[126/175] Compiling NIOCore EventLoop+SerialExecutor.swift
[127/175] Compiling NIOCore EventLoop.swift
[128/175] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[129/181] Compiling NIOCore AddressedEnvelope.swift
[130/181] Compiling NIOCore AsyncAwaitSupport.swift
[131/181] Compiling NIOCore AsyncChannel.swift
[132/181] Compiling NIOCore AsyncChannelInboundStream.swift
[133/181] Compiling NIOCore AsyncChannelInboundStreamChannelHandler.swift
[134/181] Compiling NIOCore AsyncChannelOutboundWriter.swift
[135/181] Compiling NIOCore AsyncChannelOutboundWriterHandler.swift
[136/181] Compiling NIOCore NIOLoopBound.swift
[137/181] Compiling NIOCore NIOSendable.swift
[138/181] Compiling NIOCore PointerHelpers.swift
[139/181] Compiling NIOCore RecvByteBufferAllocator.swift
[140/181] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[141/181] Compiling NIOCore SocketAddresses.swift
[142/181] Compiling NIOCore SocketOptionProvider.swift
[143/181] Compiling NIOCore SystemCallHelpers.swift
[144/181] Compiling NIOCore TimeAmount+Duration.swift
[145/181] Compiling NIOCore TypeAssistedChannelHandler.swift
[146/181] Compiling NIOCore UniversalBootstrapSupport.swift
[147/181] Compiling NIOCore Utilities.swift
[148/181] Compiling NIOCore NIOAsyncSequenceProducer.swift
[149/181] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[150/181] Compiling NIOCore NIOAsyncWriter.swift
[151/181] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[152/181] Compiling NIOCore BSDSocketAPI.swift
[153/181] Compiling NIOCore ByteBuffer-aux.swift
[154/181] Compiling NIOCore ByteBuffer-conversions.swift
[155/181] Compiling NIOCore ChannelHandler.swift
[156/181] Compiling NIOCore ChannelHandlers.swift
[157/181] Compiling NIOCore ChannelInvoker.swift
[158/181] Compiling NIOCore ChannelOption.swift
[159/181] Compiling NIOCore ChannelPipeline.swift
[160/181] Compiling NIOCore CircularBuffer.swift
[161/181] Compiling NIOCore Codec.swift
[162/181] Compiling NIOCore Interfaces.swift
[163/181] Compiling NIOCore Linux.swift
[164/181] Compiling NIOCore MarkedCircularBuffer.swift
[165/181] Compiling NIOCore MulticastChannel.swift
[166/181] Compiling NIOCore NIOAny.swift
[167/181] Compiling NIOCore NIOCloseOnErrorHandler.swift
[168/181] Compiling NIOCore EventLoopFuture+Deprecated.swift
[169/181] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[170/181] Compiling NIOCore EventLoopFuture.swift
[171/181] Compiling NIOCore FileDescriptor.swift
[172/181] Compiling NIOCore FileHandle.swift
[173/181] Compiling NIOCore FileRegion.swift
[178/181] Compiling NIOCore ByteBuffer-multi-int.swift
[179/181] Compiling NIOCore ByteBuffer-views.swift
[180/181] Compiling NIOCore Channel.swift
[181/181] Emitting module NIOCore
[182/234] Compiling NIOEmbedded AsyncTestingChannel.swift
[183/234] Compiling NIOEmbedded Embedded.swift
[184/234] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[185/234] Emitting module NIOEmbedded
[186/234] Compiling NIOPosix SocketProtocols.swift
[187/234] Compiling NIOPosix System.swift
[188/234] Compiling NIOPosix Thread.swift
[189/234] Compiling NIOPosix ThreadPosix.swift
[190/234] Compiling NIOPosix ThreadWindows.swift
[191/239] Compiling NIOPosix Selectable.swift
[192/239] Compiling NIOPosix SelectableChannel.swift
[193/239] Compiling NIOPosix SelectableEventLoop.swift
[194/239] Compiling NIOPosix SelectorEpoll.swift
[195/239] Compiling NIOPosix SelectorGeneric.swift
[196/239] Emitting module NIOPosix
[197/239] Compiling NIOPosix BaseStreamSocketChannel.swift
[198/239] Compiling NIOPosix Bootstrap.swift
[199/239] Compiling NIOPosix ControlMessage.swift
[200/239] Compiling NIOPosix DatagramVectorReadManager.swift
[201/239] Compiling NIOPosix FileDescriptor.swift
[202/239] Compiling NIOPosix GetaddrinfoResolver.swift
[203/239] Compiling NIOPosix PooledRecvBufferAllocator.swift
[204/239] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[205/239] Compiling NIOPosix PosixSingletons.swift
[206/239] Compiling NIOPosix RawSocketBootstrap.swift
[207/239] Compiling NIOPosix Resolver.swift
[208/239] Compiling NIOPosix HappyEyeballs.swift
[209/239] Compiling NIOPosix IO.swift
[210/239] Compiling NIOPosix IntegerBitPacking.swift
[211/239] Compiling NIOPosix IntegerTypes.swift
[212/239] Compiling NIOPosix Linux.swift
[213/239] Compiling NIOPosix LinuxCPUSet.swift
[214/239] Compiling NIOPosix BSDSocketAPICommon.swift
[215/239] Compiling NIOPosix BSDSocketAPIPosix.swift
[216/239] Compiling NIOPosix BSDSocketAPIWindows.swift
[217/239] Compiling NIOPosix BaseSocket.swift
[218/239] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[219/239] Compiling NIOPosix BaseSocketChannel.swift
[220/239] Compiling NIOPosix UnsafeTransfer.swift
[221/239] Compiling NIOPosix Utilities.swift
[222/239] Compiling NIOPosix VsockAddress.swift
[223/239] Compiling NIOPosix VsockChannelEvents.swift
[224/239] Compiling NIOPosix resource_bundle_accessor.swift
[225/239] Compiling NIOPosix PendingWritesManager.swift
[226/239] Compiling NIOPosix PipeChannel.swift
[227/239] Compiling NIOPosix PipePair.swift
[228/239] Compiling NIOPosix PointerHelpers.swift
[229/239] Compiling NIOPosix Pool.swift
[230/239] Compiling NIOPosix SelectorKqueue.swift
[231/239] Compiling NIOPosix SelectorUring.swift
[232/239] Compiling NIOPosix ServerSocket.swift
[233/239] Compiling NIOPosix Socket.swift
[234/239] Compiling NIOPosix SocketChannel.swift
[235/239] Compiling NIOPosix LinuxUring.swift
[236/239] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[237/239] Compiling NIOPosix NIOThreadPool.swift
[238/239] Compiling NIOPosix NonBlockingFileIO.swift
[239/239] Compiling NIOPosix PendingDatagramWritesManager.swift
[240/241] Emitting module NIO
[241/241] Compiling NIO Exports.swift
[242/258] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[243/258] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[244/259] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[245/259] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[246/259] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[247/259] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[248/259] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[249/259] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[250/259] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[251/259] Compiling NIOHTTP1 HTTPTypes.swift
[252/259] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[253/259] Compiling NIOHTTP1 HTTPEncoder.swift
[254/259] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[255/259] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[256/259] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[257/259] Emitting module NIOHTTP1
[258/259] Compiling NIOHTTP1 ByteCollectionUtils.swift
[259/259] Compiling NIOHTTP1 HTTPDecoder.swift
[260/315] Compiling SwiftDocCUtilities JSONEncodingRenderNodeWriter.swift
[261/315] Compiling SwiftDocCUtilities CoverageAction.swift
[262/315] Compiling SwiftDocCUtilities EmitGeneratedCurationAction.swift
[263/315] Compiling SwiftDocCUtilities IndexAction.swift
[264/315] Compiling SwiftDocCUtilities CatalogTemplate.swift
[265/315] Compiling SwiftDocCUtilities CatalogTemplateKind.swift
[266/321] Emitting module SwiftDocCUtilities
[267/321] Compiling SwiftDocCUtilities FileRequestHandler.swift
[268/321] Compiling SwiftDocCUtilities HTTPResponseHead+FromRequest.swift
[269/321] Compiling SwiftDocCUtilities RequestHandlerFactory.swift
[270/321] Compiling SwiftDocCUtilities StaticHostableTransformer.swift
[271/321] Compiling SwiftDocCUtilities DirectoryMonitor.swift
[272/321] Compiling SwiftDocCUtilities Sequence+Unique.swift
[273/321] Compiling SwiftDocCUtilities Index.swift
[274/321] Compiling SwiftDocCUtilities Init.swift
[275/321] Compiling SwiftDocCUtilities Merge.swift
[276/321] Compiling SwiftDocCUtilities Preview.swift
[277/321] Compiling SwiftDocCUtilities ProcessArchive.swift
[278/321] Compiling SwiftDocCUtilities ProcessCatalog.swift
[279/321] Compiling SwiftDocCUtilities InitAction.swift
[280/321] Compiling SwiftDocCUtilities MergeAction+SynthesizedLandingPage.swift
[281/321] Compiling SwiftDocCUtilities MergeAction.swift
[282/321] Compiling SwiftDocCUtilities PreviewAction.swift
[283/321] Compiling SwiftDocCUtilities TransformForStaticHostingAction.swift
[284/321] Compiling SwiftDocCUtilities Action+performAndHandleResult.swift
[285/321] Compiling SwiftDocCUtilities ConvertAction+CommandInitialization.swift
[286/321] Compiling SwiftDocCUtilities EmitGeneratedCurationAction+CommandInitialization.swift
[287/321] Compiling SwiftDocCUtilities IndexAction+CommandInitialization.swift
[288/321] Compiling SwiftDocCUtilities InitAction+CommandInitialization.swift
[289/321] Compiling SwiftDocCUtilities PreviewAction+CommandInitialization.swift
[290/321] Compiling SwiftDocCUtilities TransformForStaticHostingAction+CommandInitialization.swift
[291/321] Compiling SwiftDocCUtilities String+Path.swift
[292/321] Compiling SwiftDocCUtilities URL+IsAbsoluteWebURL.swift
[293/321] Compiling SwiftDocCUtilities URL+Relative.swift
[294/321] Compiling SwiftDocCUtilities PlatformArgumentParser.swift
[295/321] Compiling SwiftDocCUtilities Signal.swift
[296/321] Compiling SwiftDocCUtilities Throttle.swift
[297/321] Compiling SwiftDocCUtilities Action.swift
[298/321] Compiling SwiftDocCUtilities ActionResult.swift
[299/321] Compiling SwiftDocCUtilities Action+MoveOutput.swift
[300/321] Compiling SwiftDocCUtilities ConvertAction.swift
[301/321] Compiling SwiftDocCUtilities ConvertFileWritingConsumer.swift
[302/321] Compiling SwiftDocCUtilities CoverageDataEntry+generateSummary.swift
[303/321] Compiling SwiftDocCUtilities Indexer.swift
[304/321] Compiling SwiftDocCUtilities TransformForStaticHosting.swift
[305/321] Compiling SwiftDocCUtilities Docc.swift
[306/321] Compiling SwiftDocCUtilities PreviewHTTPHandler.swift
[307/321] Compiling SwiftDocCUtilities PreviewServer.swift
[308/321] Compiling SwiftDocCUtilities DefaultRequestHandler.swift
[309/321] Compiling SwiftDocCUtilities ErrorRequestHandler.swift
[310/321] Compiling SwiftDocCUtilities URLArgumentValidator.swift
[311/321] Compiling SwiftDocCUtilities DirectoryPathOption.swift
[312/321] Compiling SwiftDocCUtilities DocumentationArchiveOption.swift
[313/321] Compiling SwiftDocCUtilities DocumentationBundleOption.swift
[314/321] Compiling SwiftDocCUtilities DocumentationCoverageOptionsArgument.swift
[315/321] Compiling SwiftDocCUtilities InitOptions.swift
[316/321] Compiling SwiftDocCUtilities OutOfProcessLinkResolverOption.swift
[317/321] Compiling SwiftDocCUtilities PreviewOptions.swift
[318/321] Compiling SwiftDocCUtilities SourceRepositoryArguments.swift
[319/321] Compiling SwiftDocCUtilities TemplateOption.swift
[320/321] Compiling SwiftDocCUtilities Convert.swift
[321/321] Compiling SwiftDocCUtilities EmitGeneratedCuration.swift
Build of target: 'SwiftDocCUtilities' complete! (10.11s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/swiftlang/swift-docc/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/swiftlang/swift-docc/main/linkable-paths.json
11968
68 /Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-docc/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftlang/swift-docc/main
File count: 11968
Doc size: 68.0MB
Preparing doc bundle ...
Uploading prod-swiftlang-swift-docc-main-87ad3c19.zip to s3://spi-docs-inbox/prod-swiftlang-swift-docc-main-87ad3c19.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.