Build Information
Successful build of SwiftDocC, reference main (ca63f5
), with Swift 6.1 for macOS (SPM) on 12 Jun 2025 12:37:13 UTC.
Swift 6 data race errors: 299
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
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Merge.swift:31:20: warning: static property '_fileManager' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | //
30 | // Provided as a static variable to allow for using a different file manager in unit tests.
31 | static var _fileManager: any FileManagerProtocol = FileManager.default
| |- warning: static property '_fileManager' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_fileManager' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_fileManager' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | // Note:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Preview.swift:20: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
18 | public init() {}
19 |
20 | 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
21 | abstract: "Convert documentation inputs and preview the documentation output.",
22 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/ProcessArchive.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 ProcessArchive: 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: "process-archive",
20 | abstract: "Perform operations on documentation archives ('.doccarchive' directories).",
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/ProcessCatalog.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 ProcessCatalog: 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: "process-catalog",
20 | abstract: "Perform operations on documentation catalogs ('.docc' directories).",
[1054/1086] Compiling SwiftDocCUtilities ProcessArchive.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Index.swift:19: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
17 | public init() {}
18 |
19 | 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
20 | abstract: "Create an index for the documentation from compiled data.")
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Index.swift:50: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
48 | init() {}
49 |
50 | 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
51 | commandName: "index",
52 | abstract: "Create an index for the documentation from compiled data.",
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Init.swift:19: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
17 | public init() {}
18 |
19 | public static var configuration: CommandConfiguration = 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
20 | abstract: "Generate a documentation catalog from the selected template."
21 | )
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Merge.swift:20: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
18 | public init() {}
19 |
20 | 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
21 | abstract: "Merge a list of documentation archives into a combined archive.",
22 | usage: "docc merge <archive-path> ... [<synthesized-landing-page-options>] [--output-path <output-path>]"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Merge.swift:31:20: warning: static property '_fileManager' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | //
30 | // Provided as a static variable to allow for using a different file manager in unit tests.
31 | static var _fileManager: any FileManagerProtocol = FileManager.default
| |- warning: static property '_fileManager' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_fileManager' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_fileManager' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | // Note:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Preview.swift:20: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
18 | public init() {}
19 |
20 | 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
21 | abstract: "Convert documentation inputs and preview the documentation output.",
22 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/ProcessArchive.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 ProcessArchive: 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: "process-archive",
20 | abstract: "Perform operations on documentation archives ('.doccarchive' directories).",
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/ProcessCatalog.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 ProcessCatalog: 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: "process-catalog",
20 | abstract: "Perform operations on documentation catalogs ('.docc' directories).",
[1055/1086] Compiling SwiftDocCUtilities ProcessCatalog.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Index.swift:19: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
17 | public init() {}
18 |
19 | 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
20 | abstract: "Create an index for the documentation from compiled data.")
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Index.swift:50: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
48 | init() {}
49 |
50 | 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
51 | commandName: "index",
52 | abstract: "Create an index for the documentation from compiled data.",
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Init.swift:19: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
17 | public init() {}
18 |
19 | public static var configuration: CommandConfiguration = 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
20 | abstract: "Generate a documentation catalog from the selected template."
21 | )
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Merge.swift:20: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
18 | public init() {}
19 |
20 | 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
21 | abstract: "Merge a list of documentation archives into a combined archive.",
22 | usage: "docc merge <archive-path> ... [<synthesized-landing-page-options>] [--output-path <output-path>]"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Merge.swift:31:20: warning: static property '_fileManager' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | //
30 | // Provided as a static variable to allow for using a different file manager in unit tests.
31 | static var _fileManager: any FileManagerProtocol = FileManager.default
| |- warning: static property '_fileManager' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_fileManager' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_fileManager' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | // Note:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/Preview.swift:20: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
18 | public init() {}
19 |
20 | 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
21 | abstract: "Convert documentation inputs and preview the documentation output.",
22 | usage: """
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/ProcessArchive.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 ProcessArchive: 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: "process-archive",
20 | abstract: "Perform operations on documentation archives ('.doccarchive' directories).",
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDocCUtilities/ArgumentParsing/Subcommands/ProcessCatalog.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 ProcessCatalog: 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: "process-catalog",
20 | abstract: "Perform operations on documentation catalogs ('.docc' directories).",
[1056/1086] Compiling SwiftDocCUtilities JSONEncodingRenderNodeWriter.swift
[1057/1086] Compiling SwiftDocCUtilities CoverageAction.swift
[1058/1086] Compiling SwiftDocCUtilities EmitGeneratedCurationAction.swift
[1059/1086] Compiling SwiftDocCUtilities IndexAction.swift
[1060/1086] Compiling SwiftDocCUtilities CatalogTemplate.swift
[1061/1086] Compiling SwiftDocCUtilities CatalogTemplateKind.swift
[1062/1086] 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.",
[1063/1086] 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.",
[1064/1086] 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.",
[1065/1086] 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.",
[1066/1086] 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.",
[1067/1086] 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.",
[1068/1086] 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: [])
[1069/1086] 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: [])
[1070/1086] 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: [])
[1071/1086] 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: [])
[1072/1086] 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: [])
[1073/1086] 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: [])
[1073/1090] Linking generate-symbol-graph
[1074/1090] Applying generate-symbol-graph
[1076/1090] Compiling docc main.swift
[1077/1090] Emitting module docc
[1078/1090] Compiling signal_test_app main.swift
[1079/1090] Emitting module signal_test_app
[1079/1090] Write Objects.LinkFileList
[1081/1090] Linking docc
[1082/1090] Linking signal-test-app
[1083/1090] Applying docc
[1084/1090] Applying signal-test-app
[1086/1090] Compiling SwiftDocCTestUtilities XCTestCase+TemporaryDirectory.swift
[1087/1090] 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 |
[1088/1090] Compiling SwiftDocCTestUtilities FilesAndFolders.swift
[1089/1090] Compiling SwiftDocCTestUtilities TestFileSystem.swift
[1090/1090] 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 |
Build complete! (47.92s)
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/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.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/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.51s)
Building documentation for 'SwiftDocC'...
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.75s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-docc/main
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[0/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/62] Compiling SymbolKit DeclarationFragments.swift
[7/62] Compiling SymbolKit Fragment.swift
[8/62] Compiling SymbolKit FragmentKind.swift
[9/62] Compiling SymbolKit FunctionParameter.swift
[10/62] Compiling SymbolKit FunctionSignature.swift
[11/62] Compiling SymbolKit HTTP.swift
[12/67] Compiling SymbolKit Identifier.swift
[13/67] Compiling SymbolKit KindIdentifier.swift
[14/67] Compiling SymbolKit Location.swift
[15/67] Compiling SymbolKit Mutability.swift
[16/67] Compiling SymbolKit Names.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] Emitting module SymbolKit
[24/67] Compiling SymbolKit OverloadData.swift
[25/67] Compiling SymbolKit PlistDetails.swift
[26/67] Compiling SymbolKit SPI.swift
[27/67] Compiling SymbolKit Snippet.swift
[28/67] Compiling SymbolKit Extension.swift
[29/67] Compiling SymbolKit Relationship.swift
[30/67] Compiling SymbolKit RelationshipKind.swift
[31/67] Compiling SymbolKit SourceOrigin.swift
[32/67] Compiling SymbolKit GenericConstraints.swift
[33/67] Compiling SymbolKit Swift.swift
[34/67] Compiling SymbolKit SemanticVersion.swift
[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 SourceRange.swift
[42/67] Compiling SymbolKit Metadata.swift
[43/67] Compiling SymbolKit Module.swift
[44/67] Compiling SymbolKit OperatingSystem.swift
[45/67] Compiling SymbolKit Platform.swift
[46/67] Compiling SymbolKit ReferenceLocation.swift
[47/67] Compiling SymbolKit GenericConstraint.swift
[48/67] Compiling SymbolKit GenericParameter.swift
[49/67] Compiling SymbolKit Generics.swift
[50/67] Compiling SymbolKit Namespace.swift
[51/67] Compiling SymbolKit Symbol.swift
[52/67] Compiling SymbolKit SymbolKind.swift
[53/67] Compiling SymbolKit ValueConstraints.swift
[54/67] Compiling SymbolKit SymbolGraph+Overloads.swift
[55/67] Compiling SymbolKit SymbolGraph.swift
[56/67] Compiling SymbolKit GraphCollector.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 Snippet.swift
[63/67] Emitting module Snippets
[64/67] Compiling Snippets SnippetParser.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.19s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/189] Compiling Markdown InlineCode.swift
[3/189] Compiling Markdown InlineHTML.swift
[4/189] Compiling Markdown LineBreak.swift
[5/189] Compiling Markdown SoftBreak.swift
[6/189] Compiling Markdown SymbolLink.swift
[7/189] Compiling Markdown Text.swift
[8/189] Compiling Markdown Aside.swift
[9/189] Compiling Markdown BlockDirectiveParser.swift
[10/197] Compiling Markdown BlockDirective.swift
[11/197] Compiling Markdown BlockQuote.swift
[12/197] Compiling Markdown CustomBlock.swift
[13/197] Compiling Markdown DoxygenAbstract.swift
[14/197] Compiling Markdown DoxygenDiscussion.swift
[15/197] Compiling Markdown TableCellContainer.swift
[16/197] Compiling Markdown TableHead.swift
[17/197] Compiling Markdown TableRow.swift
[18/197] Compiling Markdown CommonMarkConverter.swift
[19/197] Compiling Markdown LazySplitLines.swift
[20/197] Compiling Markdown ParseOptions.swift
[21/197] Compiling Markdown RangeAdjuster.swift
[22/197] Compiling Markdown RangerTracker.swift
[23/197] Compiling Markdown MarkupRewriter.swift
[24/197] Compiling Markdown BasicBlockContainer.swift
[25/197] Compiling Markdown BasicInlineContainer.swift
[26/197] Compiling Markdown BlockContainer.swift
[27/197] Compiling Markdown BlockMarkup.swift
[28/197] Compiling Markdown InlineContainer.swift
[29/197] Compiling Markdown InlineMarkup.swift
[30/197] Compiling Markdown ListItemContainer.swift
[31/197] Compiling Markdown AtomicCounter.swift
[32/197] Compiling Markdown CharacterExtensions.swift
[33/197] Compiling Crypto ArraySliceBigint.swift
[34/197] Compiling Crypto GeneralizedTime.swift
[35/197] Compiling Crypto ObjectIdentifier.swift
[36/197] Compiling Crypto ECDSASignature.swift
[37/197] Compiling Crypto PEMDocument.swift
[38/197] Compiling Crypto PKCS8PrivateKey.swift
[39/197] Compiling Crypto SEC1PrivateKey.swift
[40/197] Compiling Crypto SubjectPublicKeyInfo.swift
[41/197] Compiling Crypto CryptoKitErrors.swift
[42/197] Compiling Markdown ChildIndexPath.swift
[43/197] Compiling Markdown DirectiveArgument.swift
[44/197] Compiling Markdown Document.swift
[45/197] Compiling Markdown LiteralMarkup.swift
[46/197] Compiling Markdown Markup.swift
[47/197] Compiling Markdown MarkupChildren.swift
[48/197] Compiling Markdown MarkupData.swift
[49/197] Compiling Markdown DoxygenNote.swift
[50/197] Compiling Markdown DoxygenParameter.swift
[51/197] Compiling Markdown DoxygenReturns.swift
[52/197] Compiling Markdown ListItem.swift
[53/197] Compiling Markdown OrderedList.swift
[54/197] Compiling Markdown UnorderedList.swift
[55/197] Compiling Markdown Paragraph.swift
[56/197] Compiling Markdown PlainTextConvertibleMarkup.swift
[57/197] Compiling Markdown RawMarkup.swift
[58/197] Emitting module Crypto
[59/197] Compiling Markdown Table.swift
[60/197] Compiling Markdown TableBody.swift
[61/197] Compiling Markdown TableCell.swift
[62/197] Compiling Markdown InlineAttributes.swift
[63/197] Compiling Markdown Link.swift
[64/197] Compiling Markdown Strikethrough.swift
[65/197] Compiling Markdown Strong.swift
[66/197] Compiling Markdown CustomInline.swift
[67/197] Compiling Markdown Replacement.swift
[68/197] Compiling Markdown SourceLocation.swift
[69/197] Compiling Markdown Emphasis.swift
[70/197] Compiling Markdown Image.swift
[71/197] Compiling Markdown CodeBlock.swift
[72/197] Compiling Markdown HTMLBlock.swift
[73/197] Compiling Markdown Heading.swift
[74/197] Compiling Markdown ThematicBreak.swift
[131/209] Emitting module Markdown
[132/209] Compiling Crypto RNG_boring.swift
[133/209] Compiling Crypto SafeCompare_boring.swift
[134/209] Compiling Crypto Zeroization_boring.swift
[135/209] Compiling Crypto PrettyBytes.swift
[136/209] Compiling Crypto SafeCompare.swift
[137/209] Compiling Crypto SecureBytes.swift
[138/209] Compiling Crypto Zeroization.swift
[139/209] Compiling Crypto resource_bundle_accessor.swift
[140/209] Emitting module SymbolKit
[177/209] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[178/209] Compiling SymbolKit UnifiedSymbol.swift
[179/209] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[180/209] Compiling SymbolKit UnifiedSymbolGraph+Overloads.swift
[181/209] Compiling SymbolKit UnifiedSymbolGraph.swift
[182/209] Compiling Markdown CollectionExtensions.swift
[183/209] Compiling Markdown StringExtensions.swift
[184/209] Compiling Markdown MarkupVisitor.swift
[185/209] Compiling Markdown MarkupWalker.swift
[186/209] Compiling Markdown HTMLFormatter.swift
[187/209] Compiling Markdown MarkupFormatter.swift
[188/209] Compiling Markdown MarkupTreeDumper.swift
[210/432] Compiling SwiftDocC RenderNodeTransformer.swift
[211/432] Compiling SwiftDocC RenderNodeTransforming.swift
[212/432] Compiling SwiftDocC TopicRenderReferenceEncoder.swift
[213/432] Compiling SwiftDocC DocumentationCoverageOptions.swift
[214/432] Compiling SwiftDocC ConvertService+DataProvider.swift
[215/432] Compiling SwiftDocC ConvertService.swift
[216/432] Compiling SwiftDocC ConvertServiceFallbackResolver.swift
[217/432] Compiling SwiftDocC AbsoluteSymbolLink.swift
[218/432] Compiling SwiftDocC DocCSymbolRepresentable.swift
[219/432] Compiling SwiftDocC LinkCompletionTools.swift
[220/432] Compiling SwiftDocC DocumentationServer+createDefaultServer.swift
[221/432] Compiling SwiftDocC ExternalReferenceResolverServiceClient.swift
[222/432] Compiling SwiftDocC DocumentationServer+Message.swift
[223/432] Compiling SwiftDocC DocumentationServer+MessageType.swift
[224/432] Compiling SwiftDocC DocumentationServer.swift
[225/432] Compiling SwiftDocC DocumentationServerError.swift
[226/432] Compiling SwiftDocC DocumentationServerProtocol.swift
[227/432] Compiling SwiftDocC DocumentationService.swift
[228/432] Compiling SwiftDocC ConvertRequest.swift
[229/432] Compiling SwiftDocC ConvertRequestContextWrapper.swift
[230/432] Compiling SwiftDocC ConvertResponse.swift
[231/432] Compiling SwiftDocC ConvertServiceError.swift
[232/432] Compiling SwiftDocC Indexable.swift
[233/432] Compiling SwiftDocC IndexingError.swift
[234/432] Compiling SwiftDocC IndexingRecord.swift
[235/456] Compiling SwiftDocC MessageType.swift
[236/456] Compiling SwiftDocC WebKitCommunicationBridge.swift
[237/456] Compiling SwiftDocC ContentCache.swift
[238/456] Compiling SwiftDocC DocumentationContext+Deprecated.swift
[239/456] Compiling SwiftDocC DocumentationContext+Configuration.swift
[240/456] Compiling SwiftDocC ConvertActionConverter.swift
[241/456] Compiling SwiftDocC ConvertOutputConsumer.swift
[242/456] Compiling SwiftDocC CoverageDataEntry.swift
[243/456] Compiling SwiftDocC ANSIAnnotation.swift
[244/456] Compiling SwiftDocC Diagnostic.swift
[245/456] Compiling SwiftDocC DiagnosticConsoleWriter.swift
[246/456] Compiling SwiftDocC DiagnosticConsumer.swift
[247/456] Compiling SwiftDocC DiagnosticEngine.swift
[248/456] Compiling SwiftDocC DiagnosticFile.swift
[249/456] Compiling SwiftDocC DiagnosticFileWriter.swift
[250/456] Compiling SwiftDocC DiagnosticFormattingOptions.swift
[251/456] Compiling SwiftDocC DiagnosticNote.swift
[252/456] Compiling SwiftDocC DiagnosticSeverity.swift
[253/456] Compiling SwiftDocC ParseDirectiveArguments.swift
[254/456] Compiling SwiftDocC Problem.swift
[255/456] Compiling SwiftDocC Replacement.swift
[256/456] Compiling SwiftDocC Solution.swift
[257/456] Compiling SwiftDocC SourcePosition.swift
[258/456] Compiling SwiftDocC TerminalHelper.swift
[259/456] Compiling SwiftDocC DocumentationBundle+Identifier.swift
[260/480] Compiling SwiftDocC PathHierarchyBasedLinkResolver+Breadcrumbs.swift
[261/480] Compiling SwiftDocC PathHierarchyBasedLinkResolver+Overloads.swift
[262/480] Compiling SwiftDocC PathHierarchyBasedLinkResolver.swift
[263/480] Compiling SwiftDocC NodeURLGenerator.swift
[264/480] Compiling SwiftDocC AccessControl+Comparable.swift
[265/480] Compiling SwiftDocC ExtendedTypeFormatExtension.swift
[266/480] Compiling SwiftDocC ExtendedTypeFormatTransformation.swift
[267/480] Compiling SwiftDocC GeneratedDocumentationTopics.swift
[268/480] Compiling SwiftDocC ResolvedTopicReference+Symbol.swift
[269/480] Compiling SwiftDocC SymbolGraphConcurrentDecoder.swift
[270/480] Compiling SwiftDocC SymbolGraphLoader.swift
[271/480] Compiling SwiftDocC SymbolGraphRelationshipsBuilder.swift
[272/480] Compiling SwiftDocC SymbolReference.swift
[273/480] Compiling SwiftDocC UnresolvedTopicReference+Symbol.swift
[274/480] Compiling SwiftDocC AutomaticCuration.swift
[275/480] Compiling SwiftDocC TopicGraph.swift
[276/480] Compiling SwiftDocC DefaultAvailability.swift
[277/480] Compiling SwiftDocC DocumentationBundle+Info.swift
[278/480] Compiling SwiftDocC DocumentationWorkspace.swift
[279/480] Compiling SwiftDocC DocumentationWorkspaceDataProvider.swift
[280/480] Compiling SwiftDocC FeatureFlags+Info.swift
[281/480] Compiling SwiftDocC FileSystemProvider.swift
[282/480] Compiling SwiftDocC GeneratedDataProvider.swift
[283/480] Compiling SwiftDocC LocalFileSystemDataProvider+BundleDiscovery.swift
[284/480] Compiling SwiftDocC LocalFileSystemDataProvider.swift
[285/504] Emitting module SwiftDocC
[286/528] Compiling SwiftDocC Benchmark.swift
[287/528] Compiling SwiftDocC BenchmarkResults.swift
[288/528] Compiling SwiftDocC Metrics.swift
[289/528] Compiling SwiftDocC Duration.swift
[290/528] Compiling SwiftDocC ExternalTopicsHash.swift
[291/528] Compiling SwiftDocC OutputSize.swift
[292/528] Compiling SwiftDocC PeakMemory.swift
[293/528] Compiling SwiftDocC TopicAnchorHash.swift
[294/528] Compiling SwiftDocC TopicGraphHash.swift
[295/528] Compiling SwiftDocC GeneratedCurationWriter.swift
[296/528] Compiling SwiftDocC Checker.swift
[297/528] Compiling SwiftDocC AbstractContainsFormattedTextOnly.swift
[298/528] Compiling SwiftDocC DuplicateTopicsSection.swift
[299/528] Compiling SwiftDocC InvalidAdditionalTitle.swift
[300/528] Compiling SwiftDocC MissingAbstract.swift
[301/528] Compiling SwiftDocC NonInclusiveLanguageChecker.swift
[302/528] Compiling SwiftDocC NonOverviewHeadingChecker.swift
[303/528] Compiling SwiftDocC SeeAlsoInTopicsHeadingChecker.swift
[304/528] Compiling SwiftDocC DocumentationContextConverter.swift
[305/528] Compiling SwiftDocC DocumentationNodeConverter.swift
[306/528] Compiling SwiftDocC RenderNode+Coding.swift
[307/528] Compiling SwiftDocC RemoveHierarchyTransformation.swift
[308/528] Compiling SwiftDocC RemoveUnusedReferencesTransformation.swift
[309/528] Compiling SwiftDocC RenderNodeTransformationComposition.swift
[310/528] Compiling SwiftDocC RenderNodeTransformationContext.swift
[311/528] Compiling SwiftDocC AvailabilityIndex+Ext.swift
[312/528] Compiling SwiftDocC AvailabilityIndex.swift
[313/528] Compiling SwiftDocC NavigatorIndex+Ext.swift
[314/528] Compiling SwiftDocC NavigatorIndex.swift
[315/528] Compiling SwiftDocC NavigatorItem.swift
[316/528] Compiling SwiftDocC NavigatorTree.swift
[317/528] Compiling SwiftDocC RenderNode+NavigatorIndex.swift
[318/528] Compiling SwiftDocC RenderBlockContent+TextIndexing.swift
[319/528] Compiling SwiftDocC RenderIndex.swift
[320/528] Compiling SwiftDocC RenderInlineContent+TextIndexing.swift
[321/528] Compiling SwiftDocC RenderNode+Indexable.swift
[322/528] Compiling SwiftDocC RenderNode+Relationships.swift
[323/528] Compiling SwiftDocC RenderSection+TextIndexing.swift
[324/528] Compiling SwiftDocC TutorialSectionsRenderSection+Indexable.swift
[325/528] Compiling SwiftDocC BundleData.swift
[326/528] Compiling SwiftDocC DataAssetManager.swift
[327/528] Compiling SwiftDocC SVGIDExtractor.swift
[328/528] Compiling SwiftDocC CodeColors.swift
[329/528] Compiling SwiftDocC CodeColorsPreferenceKey.swift
[330/528] Compiling SwiftDocC SRGBColor.swift
[331/528] Compiling SwiftDocC CommunicationBridge.swift
[332/528] Compiling SwiftDocC AnyCodable.swift
[333/528] Compiling SwiftDocC JSON.swift
[334/528] Compiling SwiftDocC Message+Codable.swift
[335/528] Compiling SwiftDocC Message.swift
[336/528] Compiling SwiftDocC RenderHierarchy.swift
[337/528] Compiling SwiftDocC RenderHierarchyChapter.swift
[338/528] Compiling SwiftDocC RenderHierarchyLandmark.swift
[339/528] Compiling SwiftDocC RenderHierarchyTranslator.swift
[340/528] Compiling SwiftDocC RenderHierarchyTutorial.swift
[341/528] Compiling SwiftDocC RenderReferenceHierarchy.swift
[342/528] Compiling SwiftDocC RenderTutorialsHierarchy.swift
[343/528] Compiling SwiftDocC PresentationURLGenerator.swift
[344/528] Compiling SwiftDocC AssetReferences.swift
[345/528] Compiling SwiftDocC FileReference.swift
[346/528] Compiling SwiftDocC ImageReference.swift
[347/528] Compiling SwiftDocC LinkReference.swift
[348/528] Compiling SwiftDocC MediaReference.swift
[349/528] Compiling SwiftDocC RenderReference.swift
[350/528] Compiling SwiftDocC TopicColor.swift
[351/528] Compiling SwiftDocC TopicImage.swift
[352/528] Compiling SwiftDocC TopicRenderReference.swift
[353/528] Compiling SwiftDocC UnresolvedReference.swift
[354/528] Compiling SwiftDocC VideoReference.swift
[355/528] Compiling SwiftDocC RenderContentCompiler.swift
[356/528] Compiling SwiftDocC RenderContentConvertible.swift
[357/528] Compiling SwiftDocC RenderContext.swift
[358/528] Compiling SwiftDocC RenderNode.Tag.swift
[359/528] Compiling SwiftDocC RenderNode.swift
[360/600] Compiling SwiftDocC VariantPatchOperation.swift
[361/600] Compiling SwiftDocC Section.swift
[362/600] Compiling SwiftDocC Abstract.swift
[363/600] Compiling SwiftDocC AutomaticTaskGroupSection.swift
[364/600] Compiling SwiftDocC DefaultImplementations.swift
[365/600] Compiling SwiftDocC DeprecatedSection.swift
[366/600] Compiling SwiftDocC DictionaryKeysSection.swift
[367/600] Compiling SwiftDocC Discussion.swift
[368/600] Compiling SwiftDocC GroupedSection.swift
[369/600] Compiling SwiftDocC HTTPBodySection.swift
[370/600] Compiling SwiftDocC HTTPEndpointSection.swift
[371/600] Compiling SwiftDocC HTTPParametersSection.swift
[372/600] Compiling SwiftDocC HTTPResponsesSection.swift
[373/600] Compiling SwiftDocC ParametersSection.swift
[374/600] Compiling SwiftDocC PropertyListPossibleValuesSection.swift
[375/600] Compiling SwiftDocC Relationships.swift
[376/600] Compiling SwiftDocC ReturnsSection.swift
[377/600] Compiling SwiftDocC SeeAlso.swift
[378/600] Compiling SwiftDocC Topics.swift
[379/600] Compiling SwiftDocC DictionaryKey.swift
[380/600] Compiling SwiftDocC HTTPBody.swift
[381/600] Compiling SwiftDocC HTTPParameter.swift
[382/600] Compiling SwiftDocC HTTPResponse.swift
[383/600] Compiling SwiftDocC LegacyTag.swift
[384/624] Compiling SwiftDocC LineHighlighter.swift
[385/624] Compiling SwiftDocC DownloadReference.swift
[386/624] Compiling SwiftDocC XcodeRequirementReference.swift
[387/624] Compiling SwiftDocC IntroRenderSection.swift
[388/624] Compiling SwiftDocC TutorialAssessmentsRenderSection.swift
[389/624] Compiling SwiftDocC TutorialSectionsRenderSection.swift
[390/624] Compiling SwiftDocC RenderTile.swift
[391/624] Compiling SwiftDocC CallToActionSection.swift
[392/624] Compiling SwiftDocC ContentAndMediaGroupSection.swift
[393/624] Compiling SwiftDocC ContentAndMediaSection.swift
[394/624] Compiling SwiftDocC ResourcesRenderSection.swift
[395/624] Compiling SwiftDocC VolumeRenderSection.swift
[396/624] Compiling SwiftDocC JSONPatchApplier.swift
[397/624] Compiling SwiftDocC JSONPatchOperation.swift
[398/624] Compiling SwiftDocC JSONPointer.swift
[399/624] Compiling SwiftDocC PatchOperation.swift
[400/624] Compiling SwiftDocC RenderNodeVariantOverridesApplier.swift
[401/624] Compiling SwiftDocC VariantCollection+Coding.swift
[402/624] Compiling SwiftDocC VariantCollection+Symbol.swift
[403/624] Compiling SwiftDocC VariantCollection+Variant.swift
[404/624] Compiling SwiftDocC VariantCollection.swift
[405/624] Compiling SwiftDocC VariantContainer.swift
[406/624] Compiling SwiftDocC VariantOverride.swift
[407/624] Compiling SwiftDocC VariantOverrides.swift
[408/648] Compiling SwiftDocC SemanticVersion.swift
[409/648] Compiling SwiftDocC AttributesRenderSection.swift
[410/648] Compiling SwiftDocC AvailabilityRenderMetadataItem.swift
[411/648] Compiling SwiftDocC AvailabilitySortOrder.swift
[412/648] Compiling SwiftDocC ConformanceSection.swift
[413/648] Compiling SwiftDocC ContentRenderSection.swift
[414/648] Compiling SwiftDocC DeclarationRenderSection+SymbolGraph.swift
[415/648] Compiling SwiftDocC DeclarationsRenderSection.swift
[416/648] Compiling SwiftDocC DiffAvailability.swift
[417/648] Compiling SwiftDocC MentionsRenderSection.swift
[418/648] Compiling SwiftDocC ParameterRenderSection.swift
[419/648] Compiling SwiftDocC PossibleValuesRenderSection.swift
[420/648] Compiling SwiftDocC PropertiesRenderSection.swift
[421/648] Compiling SwiftDocC PropertyListDetailsRenderSection.swift
[422/648] Compiling SwiftDocC RESTBodyRenderSection.swift
[423/648] Compiling SwiftDocC RESTEndpointRenderSection.swift
[424/648] Compiling SwiftDocC RESTExampleRenderSection.swift
[425/648] Compiling SwiftDocC RESTParametersRenderSection.swift
[426/648] Compiling SwiftDocC RESTResponseRenderSection.swift
[427/648] Compiling SwiftDocC RelationshipsRenderSection.swift
[428/648] Compiling SwiftDocC SampleDownloadSection.swift
[429/648] Compiling SwiftDocC TaskGroupRenderSection.swift
[430/648] Compiling SwiftDocC TopicsSectionStyle.swift
[431/648] Compiling SwiftDocC TutorialArticleSection.swift
[432/672] Compiling SwiftDocC AnyMetadata.swift
[433/672] Compiling SwiftDocC CodableContentSection.swift
[434/672] Compiling SwiftDocC CodableRenderReference.swift
[435/672] Compiling SwiftDocC CodableRenderSection.swift
[436/672] Compiling SwiftDocC RenderMetadata.swift
[437/672] Compiling SwiftDocC RenderNode+Codable.swift
[438/672] Compiling SwiftDocC RenderNodeTranslator.swift
[439/672] Compiling SwiftDocC RenderNodeVariant.swift
[440/672] Compiling SwiftDocC RenderReferenceStore.swift
[441/672] Compiling SwiftDocC RenderSection.swift
[442/672] Compiling SwiftDocC AttributesSectionTranslator.swift
[443/672] Compiling SwiftDocC DeclarationsSectionTranslator.swift
[444/672] Compiling SwiftDocC DictionaryKeysSectionTranslator.swift
[445/672] Compiling SwiftDocC DiscussionSectionTranslator.swift
[446/672] Compiling SwiftDocC HTTPBodySectionTranslator.swift
[447/672] Compiling SwiftDocC HTTPEndpointSectionTranslator.swift
[448/672] Compiling SwiftDocC HTTPParametersSectionTranslator.swift
[449/672] Compiling SwiftDocC HTTPResponsesSectionTranslator.swift
[450/672] Compiling SwiftDocC MentionsSectionTranslator.swift
[451/672] Compiling SwiftDocC ParametersSectionTranslator.swift
[452/672] Compiling SwiftDocC PlistDetailsSectionTranslator.swift
[453/672] Compiling SwiftDocC PossibleValuesSectionTranslator.swift
[454/672] Compiling SwiftDocC RenderSectionTranslator.swift
[455/672] Compiling SwiftDocC ReturnsSectionTranslator.swift
[456/672] Compiling SwiftDocC PrebuiltLocalFileSystemDataProvider.swift
[457/672] Compiling SwiftDocC LinkDestinationSummary.swift
[458/672] Compiling SwiftDocC AnchorSection.swift
[459/672] Compiling SwiftDocC AvailabilityParser.swift
[460/672] Compiling SwiftDocC BuildMetadata.swift
[461/672] Compiling SwiftDocC DocumentationMarkup.swift
[462/672] Compiling SwiftDocC DocumentationNode.swift
[463/672] Compiling SwiftDocC Identifier.swift
[464/672] Compiling SwiftDocC Kind.swift
[465/672] Compiling SwiftDocC Markup+parsing.swift
[466/672] Compiling SwiftDocC Name.swift
[467/672] Compiling SwiftDocC ParametersAndReturnValidator.swift
[468/672] Compiling SwiftDocC RenderTermLists.swift
[469/672] Compiling SwiftDocC RenderBlockContent+Capitalization.swift
[470/672] Compiling SwiftDocC RenderBlockContent.swift
[471/672] Compiling SwiftDocC RenderContentMetadata.swift
[472/672] Compiling SwiftDocC RenderInlineContent.swift
[473/672] Compiling SwiftDocC AnyRenderReference.swift
[474/672] Compiling SwiftDocC AnyRenderSection.swift
[475/672] Compiling SwiftDocC DifferenceBuilder.swift
[476/672] Compiling SwiftDocC Differences.swift
[477/672] Compiling SwiftDocC RenderNode+Diffable.swift
[478/672] Compiling SwiftDocC DocumentationContentRenderer.swift
[479/672] Compiling SwiftDocC LinkTitleResolver.swift
[480/672] Compiling SwiftDocC Parameter.swift
[481/672] Compiling SwiftDocC Return.swift
[482/672] Compiling SwiftDocC Throw.swift
[483/672] Compiling SwiftDocC SourceLanguage.swift
[484/672] Compiling SwiftDocC TaskGroup.swift
[485/672] Compiling SwiftDocC Abstracted.swift
[486/672] Compiling SwiftDocC Article.swift
[487/672] Compiling SwiftDocC ArticleSymbolMentions.swift
[488/672] Compiling SwiftDocC MarkupConvertible.swift
[489/672] Compiling SwiftDocC Comment.swift
[490/672] Compiling SwiftDocC ContentAndMedia.swift
[491/672] Compiling SwiftDocC DirectiveConvertable.swift
[492/672] Compiling SwiftDocC AutomaticDirectiveConvertible.swift
[493/672] Compiling SwiftDocC ChildDirectiveWrapper.swift
[494/672] Compiling SwiftDocC ChildMarkdownWrapper.swift
[495/672] Compiling SwiftDocC DirectiveArgumentValueConvertible.swift
[496/672] Compiling SwiftDocC DirectiveArgumentWrapper.swift
[497/672] Compiling SwiftDocC DirectiveIndex.swift
[498/672] Compiling SwiftDocC DirectiveMirror.swift
[499/672] Compiling SwiftDocC MarkupContaining.swift
[500/672] Compiling SwiftDocC DirectiveParser.swift
[501/672] Compiling SwiftDocC ExternalMarkupReferenceWalker.swift
[502/672] Compiling SwiftDocC ExternalReferenceWalker.swift
[503/672] Compiling SwiftDocC DeprecatedArgument.swift
[504/672] Compiling SwiftDocC Extract.swift
[505/672] Compiling SwiftDocC HasArgumentOfType.swift
[506/672] Compiling SwiftDocC HasAtLeastOne.swift
[507/672] Compiling SwiftDocC HasAtMostOne.swift
[508/672] Compiling SwiftDocC HasContent.swift
[509/672] Compiling SwiftDocC HasExactlyOne.swift
[510/672] Compiling SwiftDocC HasOnlyKnownArguments.swift
[511/672] Compiling SwiftDocC HasOnlyKnownDirectives.swift
[512/672] Compiling SwiftDocC HasOnlySequentialHeadings.swift
[513/672] Compiling SwiftDocC SymbolKind.Swift.swift
[514/672] Compiling SwiftDocC Intro.swift
[515/672] Compiling SwiftDocC Landmark.swift
[516/672] Compiling SwiftDocC Layout.swift
[517/672] Compiling SwiftDocC MarkupContainer.swift
[518/672] Compiling SwiftDocC MarkupReferenceResolver.swift
[519/672] Compiling SwiftDocC ImageMedia.swift
[520/672] Compiling SwiftDocC Media.swift
[521/672] Compiling SwiftDocC VideoMedia.swift
[522/672] Compiling SwiftDocC AlternateRepresentation.swift
[523/672] Compiling SwiftDocC Availability.swift
[524/672] Compiling SwiftDocC CallToAction.swift
[525/672] Compiling SwiftDocC CustomMetadata.swift
[526/672] Compiling SwiftDocC DisplayName.swift
[527/672] Compiling SwiftDocC DocumentationExtension.swift
[528/672] Compiling SwiftDocC Collection+indexed.swift
[529/672] Compiling SwiftDocC Dictionary+TypedValues.swift
[530/672] Compiling SwiftDocC NoOpSignposterShim.swift
[531/672] Compiling SwiftDocC Optional+baseType.swift
[532/672] Compiling SwiftDocC PlainTextShim.swift
[533/672] Compiling SwiftDocC RangeReplaceableCollection+Group.swift
[534/672] Compiling SwiftDocC Sequence+Categorize.swift
[535/672] Compiling SwiftDocC Sequence+FirstMap.swift
[536/672] Compiling SwiftDocC Sequence+RenderBlockContentElemenet.swift
[537/672] Compiling SwiftDocC SortByKeyPath.swift
[538/672] Compiling SwiftDocC String+Capitalization.swift
[539/672] Compiling SwiftDocC String+Hashing.swift
[540/672] Compiling SwiftDocC String+Path.swift
[541/672] Compiling SwiftDocC String+SingleQuoted.swift
[542/672] Compiling SwiftDocC String+Splitting.swift
[543/672] Compiling SwiftDocC String+Whitespace.swift
[544/672] Compiling SwiftDocC StringCollection+List.swift
[545/672] Compiling SwiftDocC URL+IsAbsoluteWebURL.swift
[546/672] Compiling SwiftDocC URL+Relative.swift
[547/672] Compiling SwiftDocC URL+WithFragment.swift
[548/672] Compiling SwiftDocC URL+WithoutHostAndPortAndScheme.swift
[549/672] Compiling SwiftDocC DirectedGraph+Cycles.swift
[550/672] Compiling SwiftDocC DirectedGraph+Paths.swift
[551/672] Compiling SwiftDocC DirectedGraph+Traversal.swift
[552/672] Compiling SwiftDocC XcodeRequirement.swift
[553/672] Compiling SwiftDocC Stack.swift
[554/672] Compiling SwiftDocC TutorialArticle.swift
[555/672] Compiling SwiftDocC SemanticVisitor.swift
[556/672] Compiling SwiftDocC SemanticWalker.swift
[557/672] Compiling SwiftDocC SemanticTreeDumper.swift
[558/672] Compiling SwiftDocC DocumentationSchemeHandler.swift
[559/672] Compiling SwiftDocC FileServer.swift
[560/672] Compiling SwiftDocC SourceRepository.swift
[561/672] Compiling SwiftDocC Checksum.swift
[562/672] Compiling SwiftDocC Collection+ConcurrentPerform.swift
[563/672] Compiling SwiftDocC CollectionChanges.swift
[564/672] Compiling SwiftDocC BidirectionalMap.swift
[565/672] Compiling SwiftDocC GroupedSequence.swift
[566/672] Compiling SwiftDocC DispatchGroup+Async.swift
[567/672] Compiling SwiftDocC DescribedError.swift
[568/672] Compiling SwiftDocC ErrorWithProblems.swift
[569/672] Compiling SwiftDocC ExternalIdentifier.swift
[570/672] Compiling SwiftDocC FeatureFlags.swift
[571/672] Compiling SwiftDocC FileManagerProtocol+FilesSequence.swift
[572/672] Compiling SwiftDocC FileManagerProtocol.swift
[573/672] Compiling SwiftDocC Array+baseType.swift
[574/672] Compiling SwiftDocC AutoreleasepoolShim.swift
[575/672] Compiling SwiftDocC CharacterSet.swift
[576/672] Compiling SwiftDocC DocumentationDataVariants+SymbolGraphSymbol.swift
[577/672] Compiling SwiftDocC DocumentationDataVariants.swift
[578/672] Compiling SwiftDocC PlatformName.swift
[579/672] Compiling SwiftDocC Relationship.swift
[580/672] Compiling SwiftDocC Symbol.swift
[581/672] Compiling SwiftDocC UnifiedSymbol+Extensions.swift
[582/672] Compiling SwiftDocC Resources.swift
[583/672] Compiling SwiftDocC Tile.swift
[584/672] Compiling SwiftDocC TutorialTableOfContents.swift
[585/672] Compiling SwiftDocC Chapter.swift
[586/672] Compiling SwiftDocC TutorialReference.swift
[587/672] Compiling SwiftDocC Volume.swift
[588/672] Compiling SwiftDocC TechnologyBound.swift
[589/672] Compiling SwiftDocC Timed.swift
[590/672] Compiling SwiftDocC Titled.swift
[591/672] Compiling SwiftDocC Assessments.swift
[592/672] Compiling SwiftDocC Choice.swift
[593/672] Compiling SwiftDocC Justification.swift
[594/672] Compiling SwiftDocC MultipleChoice.swift
[595/672] Compiling SwiftDocC Code.swift
[596/672] Compiling SwiftDocC Step.swift
[597/672] Compiling SwiftDocC Steps.swift
[598/672] Compiling SwiftDocC TutorialSection.swift
[599/672] Compiling SwiftDocC Tutorial.swift
[600/672] Compiling SwiftDocC DirectedGraph.swift
[601/672] Compiling SwiftDocC LMDB+Database.swift
[602/672] Compiling SwiftDocC LMDB+Environment.swift
[603/672] Compiling SwiftDocC LMDB+Error.swift
[604/672] Compiling SwiftDocC LMDB+Transaction.swift
[605/672] Compiling SwiftDocC LMDB.swift
[606/672] Compiling SwiftDocC EnglishLanguage.swift
[607/672] Compiling SwiftDocC NativeLanguage.swift
[608/672] Compiling SwiftDocC ListItemUpdatable.swift
[609/672] Compiling SwiftDocC LogHandle.swift
[610/672] Compiling SwiftDocC AnyLink.swift
[611/672] Compiling SwiftDocC BlockDirectiveExtensions.swift
[612/672] Compiling SwiftDocC DocumentExtensions.swift
[613/672] Compiling SwiftDocC ImageExtensions.swift
[614/672] Compiling SwiftDocC ListItemExtractor.swift
[615/672] Compiling SwiftDocC MarkupChildrenExtensions.swift
[616/672] Compiling SwiftDocC SourceRangeExtensions.swift
[617/672] Compiling SwiftDocC NearMiss.swift
[618/672] Compiling SwiftDocC RenderNodeDataExtractor.swift
[619/672] Compiling SwiftDocC SemanticVersion+Comparable.swift
[620/672] Compiling SwiftDocC SymbolGraphAvailability+Filter.swift
[621/672] Compiling SwiftDocC Synchronization.swift
[622/672] Compiling SwiftDocC ValidatedURL.swift
[623/672] Compiling SwiftDocC Version.swift
[624/672] Compiling SwiftDocC DocumentationBundle.swift
[625/672] Compiling SwiftDocC DocumentationBundleFileTypes.swift
[626/672] Compiling SwiftDocC DocumentationContext+Breadcrumbs.swift
[627/672] Compiling SwiftDocC DocumentationContext.swift
[628/672] Compiling SwiftDocC DocumentationConverter.swift
[629/672] Compiling SwiftDocC DocumentationCurator.swift
[630/672] Compiling SwiftDocC KindIdentifier+Curation.swift
[631/672] Compiling SwiftDocC SymbolGraph.Symbol.Location+URL.swift
[632/672] Compiling SwiftDocC ExternalDocumentationSource.swift
[633/672] Compiling SwiftDocC ExternalMetadata.swift
[634/672] Compiling SwiftDocC GlobalExternalSymbolResolver.swift
[635/672] Compiling SwiftDocC OutOfProcessReferenceResolver.swift
[636/672] Compiling SwiftDocC DataProvider.swift
[637/672] Compiling SwiftDocC DocumentationInputsProvider.swift
[638/672] Compiling SwiftDocC ExternalPathHierarchyResolver.swift
[639/672] Compiling SwiftDocC LinkResolver.swift
[640/672] Compiling SwiftDocC PathHierarchy+DisambiguatedPaths.swift
[641/672] Compiling SwiftDocC PathHierarchy+Dump.swift
[642/672] Compiling SwiftDocC PathHierarchy+Error.swift
[643/672] Compiling SwiftDocC PathHierarchy+Find.swift
[644/672] Compiling SwiftDocC PathHierarchy+PathComponent.swift
[645/672] Compiling SwiftDocC PathHierarchy+Serialization.swift
[646/672] Compiling SwiftDocC PathHierarchy+TypeSignature.swift
[647/672] Compiling SwiftDocC PathHierarchy+TypeSignatureDisambiguation.swift
[648/672] Compiling SwiftDocC PathHierarchy.swift
[649/672] Compiling SwiftDocC Metadata.swift
[650/672] Compiling SwiftDocC PageColor.swift
[651/672] Compiling SwiftDocC PageImage.swift
[652/672] Compiling SwiftDocC PageKind.swift
[653/672] Compiling SwiftDocC SupportedLanguage.swift
[654/672] Compiling SwiftDocC TechnologyRoot.swift
[655/672] Compiling SwiftDocC TitleHeading.swift
[656/672] Compiling SwiftDocC AutomaticArticleSubheading.swift
[657/672] Compiling SwiftDocC AutomaticSeeAlso.swift
[658/672] Compiling SwiftDocC AutomaticTitleHeading.swift
[659/672] Compiling SwiftDocC Options.swift
[660/672] Compiling SwiftDocC TopicsVisualStyle.swift
[661/672] Compiling SwiftDocC Redirect.swift
[662/672] Compiling SwiftDocC Redirected.swift
[663/672] Compiling SwiftDocC Links.swift
[664/672] Compiling SwiftDocC Row.swift
[665/672] Compiling SwiftDocC Small.swift
[666/672] Compiling SwiftDocC TabNavigator.swift
[667/672] Compiling SwiftDocC ReferenceResolver.swift
[668/672] Compiling SwiftDocC Semantic.swift
[669/672] Compiling SwiftDocC SemanticAnalysis.swift
[670/672] Compiling SwiftDocC SemanticAnalyzer.swift
[671/672] Compiling SwiftDocC Snippet.swift
[672/672] Compiling SwiftDocC DeprecationSummary.swift
Build of target: 'SwiftDocC' complete! (10.75s)
Target: SwiftDocCUtilities
Extracting symbol information for 'SwiftDocCUtilities'...
Finished extracting symbol information for 'SwiftDocCUtilities'. (9.43s)
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.25s)
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.95s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/52] Compiling Atomics OptionalRawRepresentable.swift
[3/52] Compiling Atomics RawRepresentable.swift
[4/53] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[5/53] Compiling Atomics ManagedAtomic.swift
[6/53] Compiling Atomics ManagedAtomicLazyReference.swift
[7/53] Compiling Atomics AtomicMemoryOrderings.swift
[8/53] Compiling Atomics DoubleWord.swift
[9/53] Compiling Atomics AtomicStorage.swift
[10/53] Compiling Atomics AtomicValue.swift
[13/53] Compiling Atomics UnsafeAtomic.swift
[14/53] Compiling Atomics UnsafeAtomicLazyReference.swift
[15/55] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[20/55] Compiling Atomics AtomicBool.swift
[21/55] Compiling Atomics IntegerConformances.swift
[22/55] Compiling Atomics PointerConformances.swift
[23/55] Compiling Atomics Primitives.native.swift
[24/55] Compiling _NIODataStructures PriorityQueue.swift
[25/55] Compiling _NIODataStructures Heap.swift
[26/55] Compiling _NIODataStructures _TinyArray.swift
[27/55] Compiling _NIOBase64 Base64.swift
[28/55] Emitting module _NIOBase64
[29/55] Compiling NIOConcurrencyHelpers lock.swift
[30/55] Emitting module _NIODataStructures
[31/55] Emitting module NIOConcurrencyHelpers
[32/55] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[33/55] Emitting module InternalCollectionsUtilities
[34/55] Compiling Atomics IntegerOperations.swift
[35/55] Compiling Atomics Unmanaged extensions.swift
[36/55] Compiling Atomics Primitives.shims.swift
[37/55] Compiling Atomics AtomicInteger.swift
[38/55] Compiling Atomics AtomicOptionalWrappable.swift
[39/55] Compiling Atomics AtomicReference.swift
[40/55] Compiling NIOConcurrencyHelpers NIOLock.swift
[41/55] Compiling NIOConcurrencyHelpers atomics.swift
[42/55] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[43/55] Emitting module ArgumentParserToolInfo
[44/55] Compiling ArgumentParserToolInfo ToolInfo.swift
[51/93] Compiling ArgumentParser EnumerableFlag.swift
[52/93] Compiling ArgumentParser ExpressibleByArgument.swift
[53/93] Compiling ArgumentParser BashCompletionsGenerator.swift
[54/93] Compiling ArgumentParser CompletionsGenerator.swift
[55/110] Compiling DequeModule _DequeBufferHeader.swift
[56/111] Compiling DequeModule Deque+CustomReflectable.swift
[57/111] Compiling DequeModule Deque+Descriptions.swift
[58/111] Compiling DequeModule _DequeSlot.swift
[59/111] Compiling DequeModule Deque.swift
[60/111] Compiling DequeModule _DequeBuffer.swift
[61/111] Compiling DequeModule Deque+Equatable.swift
[62/111] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[63/111] Compiling DequeModule Deque+Extras.swift
[64/111] Compiling DequeModule Deque+Hashable.swift
[65/111] Compiling DequeModule Deque+Codable.swift
[66/111] Compiling DequeModule Deque+Collection.swift
[69/115] Compiling DequeModule _UnsafeWrappedBuffer.swift
[70/115] Compiling ArgumentParser InputOrigin.swift
[71/115] Compiling ArgumentParser Name.swift
[72/115] Compiling ArgumentParser Parsed.swift
[73/115] Compiling ArgumentParser ParsedValues.swift
[74/115] Emitting module Atomics
[75/115] Compiling DequeModule Deque+Sendable.swift
[76/115] Compiling DequeModule Deque+Testing.swift
[77/115] Compiling DequeModule Deque._Storage.swift
[78/115] Compiling DequeModule Deque._UnsafeHandle.swift
[79/115] Emitting module ArgumentParser
[82/115] Emitting module DequeModule
[83/115] Compiling ArgumentParser Platform.swift
[84/115] Compiling ArgumentParser SequenceExtensions.swift
[85/115] Compiling ArgumentParser StringExtensions.swift
[86/115] Compiling ArgumentParser Tree.swift
[87/115] Compiling ArgumentParser ArgumentHelp.swift
[88/115] Compiling ArgumentParser ArgumentVisibility.swift
[89/115] Compiling ArgumentParser CompletionKind.swift
[90/115] Compiling ArgumentParser Errors.swift
[91/115] Compiling ArgumentParser ParserError.swift
[92/115] Compiling ArgumentParser SplitArguments.swift
[93/115] Compiling ArgumentParser DumpHelpGenerator.swift
[94/115] Compiling ArgumentParser HelpCommand.swift
[95/136] Compiling ArgumentParser ParsableArguments.swift
[96/136] Compiling ArgumentParser ParsableArgumentsValidation.swift
[97/136] Compiling ArgumentParser ParsableCommand.swift
[98/136] Compiling ArgumentParser ArgumentDecoder.swift
[99/136] Compiling ArgumentParser HelpGenerator.swift
[100/136] Compiling ArgumentParser MessageInfo.swift
[101/136] Compiling ArgumentParser UsageGenerator.swift
[102/136] Compiling ArgumentParser CollectionExtensions.swift
[103/175] Compiling NIOCore ByteBuffer-conversions.swift
[104/175] Compiling NIOCore EventLoopFuture+Deprecated.swift
[105/175] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[106/175] Compiling NIOCore EventLoopFuture.swift
[107/175] Compiling NIOCore AsyncChannelInboundStreamChannelHandler.swift
[108/175] Compiling NIOCore AsyncChannelOutboundWriter.swift
[109/175] Compiling NIOCore AsyncChannelOutboundWriterHandler.swift
[110/175] Compiling NIOCore NIOAsyncSequenceProducer.swift
[111/175] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[112/175] Compiling NIOCore NIOAsyncWriter.swift
[113/175] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[114/175] Compiling NIOCore BSDSocketAPI.swift
[115/175] Compiling NIOCore ByteBuffer-aux.swift
[116/175] Compiling NIOCore ConvenienceOptionSupport.swift
[117/175] Compiling NIOCore DeadChannel.swift
[118/175] Compiling NIOCore DispatchQueue+WithFuture.swift
[119/175] Compiling NIOCore EventLoop+Deprecated.swift
[120/175] Compiling NIOCore EventLoop+SerialExecutor.swift
[121/175] Compiling NIOCore EventLoop.swift
[122/175] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[126/181] Compiling NIOCore FileDescriptor.swift
[127/181] Compiling NIOCore FileHandle.swift
[128/181] Compiling NIOCore FileRegion.swift
[129/181] Compiling NIOCore NIOLoopBound.swift
[130/181] Compiling NIOCore NIOSendable.swift
[131/181] Compiling NIOCore PointerHelpers.swift
[132/181] Compiling NIOCore RecvByteBufferAllocator.swift
[133/181] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[134/181] Compiling NIOCore SocketAddresses.swift
[135/181] Compiling NIOCore Interfaces.swift
[136/181] Compiling NIOCore Linux.swift
[137/181] Compiling NIOCore MarkedCircularBuffer.swift
[138/181] Compiling NIOCore MulticastChannel.swift
[139/181] Compiling NIOCore NIOAny.swift
[140/181] Compiling NIOCore NIOCloseOnErrorHandler.swift
[141/181] Compiling NIOCore SocketOptionProvider.swift
[142/181] Compiling NIOCore SystemCallHelpers.swift
[143/181] Compiling NIOCore TimeAmount+Duration.swift
[144/181] Compiling NIOCore TypeAssistedChannelHandler.swift
[145/181] Compiling NIOCore UniversalBootstrapSupport.swift
[146/181] Compiling NIOCore Utilities.swift
[147/181] Compiling NIOCore AddressedEnvelope.swift
[148/181] Compiling NIOCore AsyncAwaitSupport.swift
[149/181] Compiling NIOCore AsyncChannel.swift
[150/181] Compiling NIOCore AsyncChannelInboundStream.swift
[161/181] Compiling NIOCore ChannelHandler.swift
[162/181] Compiling NIOCore ChannelHandlers.swift
[163/181] Compiling NIOCore ChannelInvoker.swift
[164/181] Compiling NIOCore ChannelOption.swift
[165/181] Compiling NIOCore ChannelPipeline.swift
[166/181] Compiling NIOCore CircularBuffer.swift
[167/181] Compiling NIOCore Codec.swift
[168/181] Compiling NIOCore GlobalSingletons.swift
[169/181] Compiling NIOCore IO.swift
[170/181] Compiling NIOCore IOData.swift
[171/181] Compiling NIOCore IPProtocol.swift
[172/181] Compiling NIOCore IntegerBitPacking.swift
[173/181] Compiling NIOCore IntegerTypes.swift
[174/181] Compiling NIOCore ByteBuffer-core.swift
[175/181] Compiling NIOCore ByteBuffer-hexdump.swift
[176/181] Compiling NIOCore ByteBuffer-int.swift
[177/181] Compiling NIOCore ByteBuffer-lengthPrefix.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 AsyncTestingEventLoop.swift
[183/234] Compiling NIOEmbedded AsyncTestingChannel.swift
[184/234] Compiling NIOEmbedded Embedded.swift
[185/234] Emitting module NIOEmbedded
[186/234] Compiling NIOPosix PooledRecvBufferAllocator.swift
[187/234] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[188/234] Compiling NIOPosix PosixSingletons.swift
[189/234] Compiling NIOPosix RawSocketBootstrap.swift
[190/234] Compiling NIOPosix Resolver.swift
[191/239] Compiling NIOPosix HappyEyeballs.swift
[192/239] Compiling NIOPosix IO.swift
[193/239] Compiling NIOPosix IntegerBitPacking.swift
[194/239] Compiling NIOPosix IntegerTypes.swift
[195/239] Compiling NIOPosix Linux.swift
[196/239] Compiling NIOPosix LinuxCPUSet.swift
[197/239] Compiling NIOPosix UnsafeTransfer.swift
[198/239] Compiling NIOPosix Utilities.swift
[199/239] Compiling NIOPosix VsockAddress.swift
[200/239] Compiling NIOPosix VsockChannelEvents.swift
[201/239] Compiling NIOPosix resource_bundle_accessor.swift
[202/239] Compiling NIOPosix Selectable.swift
[203/239] Compiling NIOPosix SelectableChannel.swift
[204/239] Compiling NIOPosix SelectableEventLoop.swift
[205/239] Compiling NIOPosix SelectorEpoll.swift
[206/239] Compiling NIOPosix SelectorGeneric.swift
[207/239] Emitting module NIOPosix
[208/239] Compiling NIOPosix PendingWritesManager.swift
[209/239] Compiling NIOPosix PipeChannel.swift
[210/239] Compiling NIOPosix PipePair.swift
[211/239] Compiling NIOPosix PointerHelpers.swift
[212/239] Compiling NIOPosix Pool.swift
[213/239] Compiling NIOPosix BaseStreamSocketChannel.swift
[214/239] Compiling NIOPosix Bootstrap.swift
[215/239] Compiling NIOPosix ControlMessage.swift
[216/239] Compiling NIOPosix DatagramVectorReadManager.swift
[217/239] Compiling NIOPosix FileDescriptor.swift
[218/239] Compiling NIOPosix GetaddrinfoResolver.swift
[219/239] Compiling NIOPosix BSDSocketAPICommon.swift
[220/239] Compiling NIOPosix BSDSocketAPIPosix.swift
[221/239] Compiling NIOPosix BSDSocketAPIWindows.swift
[222/239] Compiling NIOPosix BaseSocket.swift
[223/239] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[224/239] Compiling NIOPosix BaseSocketChannel.swift
[225/239] Compiling NIOPosix SocketProtocols.swift
[226/239] Compiling NIOPosix System.swift
[227/239] Compiling NIOPosix Thread.swift
[228/239] Compiling NIOPosix ThreadPosix.swift
[229/239] Compiling NIOPosix ThreadWindows.swift
[230/239] Compiling NIOPosix LinuxUring.swift
[231/239] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[232/239] Compiling NIOPosix NIOThreadPool.swift
[233/239] Compiling NIOPosix NonBlockingFileIO.swift
[234/239] Compiling NIOPosix PendingDatagramWritesManager.swift
[235/239] Compiling NIOPosix SelectorKqueue.swift
[236/239] Compiling NIOPosix SelectorUring.swift
[237/239] Compiling NIOPosix ServerSocket.swift
[238/239] Compiling NIOPosix Socket.swift
[239/239] Compiling NIOPosix SocketChannel.swift
[240/241] Emitting module NIO
[241/241] Compiling NIO Exports.swift
[242/258] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[243/258] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[244/258] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[245/258] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[246/258] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[247/258] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[248/258] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[249/258] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[250/258] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[251/258] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[252/258] Emitting module NIOHTTP1
[253/258] Compiling NIOHTTP1 HTTPEncoder.swift
[254/258] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[255/258] Compiling NIOHTTP1 ByteCollectionUtils.swift
[256/258] Compiling NIOHTTP1 HTTPDecoder.swift
[257/258] Compiling NIOHTTP1 HTTPTypes.swift
[258/258] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[259/259] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[260/315] Compiling SwiftDocCUtilities FileRequestHandler.swift
[261/315] Compiling SwiftDocCUtilities HTTPResponseHead+FromRequest.swift
[262/315] Compiling SwiftDocCUtilities RequestHandlerFactory.swift
[263/315] Compiling SwiftDocCUtilities StaticHostableTransformer.swift
[264/315] Compiling SwiftDocCUtilities DirectoryMonitor.swift
[265/315] Compiling SwiftDocCUtilities Sequence+Unique.swift
[266/315] Compiling SwiftDocCUtilities TransformForStaticHosting.swift
[267/315] Compiling SwiftDocCUtilities Docc.swift
[268/315] Compiling SwiftDocCUtilities PreviewHTTPHandler.swift
[269/315] Compiling SwiftDocCUtilities PreviewServer.swift
[270/315] Compiling SwiftDocCUtilities DefaultRequestHandler.swift
[271/315] Compiling SwiftDocCUtilities ErrorRequestHandler.swift
[272/315] Emitting module SwiftDocCUtilities
[273/321] Compiling SwiftDocCUtilities ConvertAction+CommandInitialization.swift
[274/321] Compiling SwiftDocCUtilities EmitGeneratedCurationAction+CommandInitialization.swift
[275/321] Compiling SwiftDocCUtilities IndexAction+CommandInitialization.swift
[276/321] Compiling SwiftDocCUtilities InitAction+CommandInitialization.swift
[277/321] Compiling SwiftDocCUtilities PreviewAction+CommandInitialization.swift
[278/321] Compiling SwiftDocCUtilities TransformForStaticHostingAction+CommandInitialization.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 Action.swift
[286/321] Compiling SwiftDocCUtilities ActionResult.swift
[287/321] Compiling SwiftDocCUtilities Action+MoveOutput.swift
[288/321] Compiling SwiftDocCUtilities ConvertAction.swift
[289/321] Compiling SwiftDocCUtilities ConvertFileWritingConsumer.swift
[290/321] Compiling SwiftDocCUtilities CoverageDataEntry+generateSummary.swift
[291/321] Compiling SwiftDocCUtilities Indexer.swift
[292/321] Compiling SwiftDocCUtilities String+Path.swift
[293/321] Compiling SwiftDocCUtilities URL+IsAbsoluteWebURL.swift
[294/321] Compiling SwiftDocCUtilities URL+Relative.swift
[295/321] Compiling SwiftDocCUtilities PlatformArgumentParser.swift
[296/321] Compiling SwiftDocCUtilities Signal.swift
[297/321] Compiling SwiftDocCUtilities Throttle.swift
[298/321] Compiling SwiftDocCUtilities JSONEncodingRenderNodeWriter.swift
[299/321] Compiling SwiftDocCUtilities CoverageAction.swift
[300/321] Compiling SwiftDocCUtilities EmitGeneratedCurationAction.swift
[301/321] Compiling SwiftDocCUtilities IndexAction.swift
[302/321] Compiling SwiftDocCUtilities CatalogTemplate.swift
[303/321] Compiling SwiftDocCUtilities CatalogTemplateKind.swift
[304/321] Compiling SwiftDocCUtilities URLArgumentValidator.swift
[305/321] Compiling SwiftDocCUtilities DirectoryPathOption.swift
[306/321] Compiling SwiftDocCUtilities DocumentationArchiveOption.swift
[307/321] Compiling SwiftDocCUtilities DocumentationBundleOption.swift
[308/321] Compiling SwiftDocCUtilities DocumentationCoverageOptionsArgument.swift
[309/321] Compiling SwiftDocCUtilities InitOptions.swift
[310/321] Compiling SwiftDocCUtilities Index.swift
[311/321] Compiling SwiftDocCUtilities Init.swift
[312/321] Compiling SwiftDocCUtilities Merge.swift
[313/321] Compiling SwiftDocCUtilities Preview.swift
[314/321] Compiling SwiftDocCUtilities ProcessArchive.swift
[315/321] Compiling SwiftDocCUtilities ProcessCatalog.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! (9.21s)
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
11928
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: 11928
Doc size: 68.0MB
Preparing doc bundle ...
Uploading prod-swiftlang-swift-docc-main-773526dc.zip to s3://spi-docs-inbox/prod-swiftlang-swift-docc-main-773526dc.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.