Build Information
Successful build of SymbolKit, reference 0.50800.0 (eaaf9b
), with Swift 6.0 for Linux on 4 Nov 2024 01:54:12 UTC.
Swift 6 data race errors: 58
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
98 | }
99 | }
[46/104] Compiling ArgumentParser ArgumentDefinition.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // Mixins
117 | static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
| |- warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftConstraints' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
116 | // Mixins
117 | static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 | static let sourceOrigin = SourceOrigin.relationshipCodingInfo
| |- warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sourceOrigin' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |
120 | static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:120:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
118 | static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |
120 | static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
| |- warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'mixinKeys' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | CodingKeys.swiftConstraints.codingKey.stringValue: Self.swiftConstraints,
122 | CodingKeys.sourceOrigin.codingKey.stringValue: Self.sourceOrigin,
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
13 | extension SymbolGraph.Relationship {
14 | /// The kind of relationship.
15 | public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
16 | public var rawValue: String
17 |
:
29 | symbol `B` is the owner of a member symbol `A`.
30 | */
31 | public static let memberOf = Kind(rawValue: "memberOf")
| |- warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'memberOf' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:42:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
13 | extension SymbolGraph.Relationship {
14 | /// The kind of relationship.
15 | public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
16 | public var rawValue: String
17 |
:
40 | a symbol `B` that has a conformer `A`.
41 | */
42 | public static let conformsTo = Kind(rawValue: "conformsTo")
| |- warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'conformsTo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:53:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
13 | extension SymbolGraph.Relationship {
14 | /// The kind of relationship.
15 | public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
16 | public var rawValue: String
17 |
:
51 | a symbol `B` is a base of another symbol `A`.
52 | */
53 | public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
| |- warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inheritsFrom' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:62:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
13 | extension SymbolGraph.Relationship {
14 | /// The kind of relationship.
15 | public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
16 | public var rawValue: String
17 |
:
60 | an interface requirement `B` has a default implementation of `A`.
61 | */
62 | public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
| |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 |
64 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:70:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
13 | extension SymbolGraph.Relationship {
14 | /// The kind of relationship.
15 | public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
16 | public var rawValue: String
17 |
:
68 | a symbol `A` is the base of symbol `B`.
69 | */
70 | public static let overrides = Kind(rawValue: "overrides")
| |- warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'overrides' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:78:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
13 | extension SymbolGraph.Relationship {
14 | /// The kind of relationship.
15 | public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
16 | public var rawValue: String
17 |
:
76 | an interface `B` has a requirement of `A`.
77 | */
78 | public static let requirementOf = Kind(rawValue: "requirementOf")
| |- warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requirementOf' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:86:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
13 | extension SymbolGraph.Relationship {
14 | /// The kind of relationship.
15 | public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
16 | public var rawValue: String
17 |
:
84 | an interface `B` has an optional requirement of `A`.
85 | */
86 | public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
| |- warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'optionalRequirementOf' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 |
88 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:97:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
13 | extension SymbolGraph.Relationship {
14 | /// The kind of relationship.
15 | public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
16 | public var rawValue: String
17 |
:
95 | by an extension block symbol `A`.
96 | */
97 | public static let extensionTo = Kind(rawValue: "extensionTo")
| |- warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'extensionTo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
98 | }
99 | }
[47/104] Compiling ArgumentParser ArgumentSet.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:218:20: warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
| |- warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'availability' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:219:20: warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
| |- warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'declarationFragments' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:220:20: warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
| |- warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'isReadOnly' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:221:20: warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
| |- warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftExtension' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:222:20: warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
| |- warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftGenerics' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:223:20: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
| |- warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'location' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:224:20: warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
| |- warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'functionSignature' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:225:20: warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
| |- warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'spi' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | static let snippet = Snippet.symbolCodingInfo
227 |
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:226:20: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
| |- warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snippet' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:228:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
226 | static let snippet = Snippet.symbolCodingInfo
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
| |- warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'mixinCodingInfo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
229 | CodingKeys.availability.codingKey.stringValue: Self.availability,
230 | CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
[48/104] Compiling ArgumentParser CommandParser.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:218:20: warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
| |- warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'availability' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:219:20: warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
| |- warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'declarationFragments' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:220:20: warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
| |- warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'isReadOnly' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:221:20: warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
| |- warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftExtension' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:222:20: warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
| |- warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftGenerics' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:223:20: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
| |- warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'location' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:224:20: warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
| |- warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'functionSignature' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:225:20: warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
| |- warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'spi' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | static let snippet = Snippet.symbolCodingInfo
227 |
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:226:20: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
| |- warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snippet' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:228:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
226 | static let snippet = Snippet.symbolCodingInfo
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
| |- warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'mixinCodingInfo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
229 | CodingKeys.availability.codingKey.stringValue: Self.availability,
230 | CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
[49/104] Compiling ArgumentParser InputKey.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:218:20: warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
| |- warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'availability' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:219:20: warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
| |- warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'declarationFragments' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:220:20: warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
| |- warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'isReadOnly' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:221:20: warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
| |- warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftExtension' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:222:20: warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
| |- warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftGenerics' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:223:20: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
| |- warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'location' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:224:20: warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
| |- warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'functionSignature' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:225:20: warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
| |- warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'spi' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | static let snippet = Snippet.symbolCodingInfo
227 |
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:226:20: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
| |- warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snippet' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:228:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
226 | static let snippet = Snippet.symbolCodingInfo
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
| |- warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'mixinCodingInfo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
229 | CodingKeys.availability.codingKey.stringValue: Self.availability,
230 | CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
[62/104] Compiling ArgumentParser InputOrigin.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:218:20: warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
| |- warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'availability' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:219:20: warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
| |- warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'declarationFragments' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:220:20: warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
| |- warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'isReadOnly' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:221:20: warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
| |- warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftExtension' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:222:20: warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
| |- warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftGenerics' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:223:20: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
| |- warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'location' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:224:20: warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
| |- warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'functionSignature' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:225:20: warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
| |- warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'spi' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | static let snippet = Snippet.symbolCodingInfo
227 |
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:226:20: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
| |- warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snippet' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:228:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
226 | static let snippet = Snippet.symbolCodingInfo
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
| |- warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'mixinCodingInfo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
229 | CodingKeys.availability.codingKey.stringValue: Self.availability,
230 | CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
[63/104] Compiling ArgumentParser ExpressibleByArgument.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:218:20: warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
| |- warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'availability' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:219:20: warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
217 | // Mixins
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
| |- warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'declarationFragments' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:220:20: warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
218 | static let availability = Availability.symbolCodingInfo
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
| |- warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'isReadOnly' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:221:20: warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
219 | static let declarationFragments = DeclarationFragments.symbolCodingInfo
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
| |- warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftExtension' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:222:20: warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
220 | static let isReadOnly = Mutability.symbolCodingInfo
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
| |- warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'swiftGenerics' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:223:20: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
221 | static let swiftExtension = Swift.Extension.symbolCodingInfo
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
| |- warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'location' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:224:20: warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
222 | static let swiftGenerics = Swift.Generics.symbolCodingInfo
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
| |- warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'functionSignature' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:225:20: warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
223 | static let location = Location.symbolCodingInfo
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
| |- warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'spi' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | static let snippet = Snippet.symbolCodingInfo
227 |
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:226:20: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
224 | static let functionSignature = FunctionSignature.symbolCodingInfo
225 | static let spi = SPI.symbolCodingInfo
226 | static let snippet = Snippet.symbolCodingInfo
| |- warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snippet' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:228:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
226 | static let snippet = Snippet.symbolCodingInfo
227 |
228 | static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
| |- warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'mixinCodingInfo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
229 | CodingKeys.availability.codingKey.stringValue: Self.availability,
230 | CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
63 |
64 | struct MixinCodingInformation<Key: CodingKey> {
| `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
65 | let codingKey: Key
66 | let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
[67/104] Compiling ArgumentParser DumpHelpGenerator.swift
[68/104] Compiling ArgumentParser HelpCommand.swift
[69/104] Compiling ArgumentParser HelpGenerator.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
29 | An attribute in the programming language.
30 | */
31 | public static let attribute = Kind(rawValue: "attribute")!
| |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'attribute' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
34 | An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 | */
36 | public static let numberLiteral = Kind(rawValue: "number")!
| |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'numberLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
39 | A string literal such as `"foo"`.
40 | */
41 | public static let stringLiteral = Kind(rawValue: "string")!
| |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'stringLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
44 | An identifier such as a parameter name.
45 | */
46 | public static let identifier = Kind(rawValue: "identifier")!
| |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
49 | An identifier for a type.
50 | */
51 | public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
| |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
54 | A generic parameter, such as the `T` in C++ `template <typename T>`.
55 | */
56 | public static let genericParameter = Kind(rawValue: "genericParameter")!
| |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
68 | parameter name.
69 | */
70 | public static let externalParameter = Kind(rawValue: "externalParam")!
| |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
86 | > to in prose.
87 | */
88 | public static let internalParameter = Kind(rawValue: "internalParam")!
| |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
91 | General purpose or unlabeled text.
92 | */
93 | public static let text = Kind(rawValue: "text")!
| |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 | }
[70/104] Compiling ArgumentParser MessageInfo.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
29 | An attribute in the programming language.
30 | */
31 | public static let attribute = Kind(rawValue: "attribute")!
| |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'attribute' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
34 | An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 | */
36 | public static let numberLiteral = Kind(rawValue: "number")!
| |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'numberLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
39 | A string literal such as `"foo"`.
40 | */
41 | public static let stringLiteral = Kind(rawValue: "string")!
| |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'stringLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
44 | An identifier such as a parameter name.
45 | */
46 | public static let identifier = Kind(rawValue: "identifier")!
| |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
49 | An identifier for a type.
50 | */
51 | public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
| |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
54 | A generic parameter, such as the `T` in C++ `template <typename T>`.
55 | */
56 | public static let genericParameter = Kind(rawValue: "genericParameter")!
| |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
68 | parameter name.
69 | */
70 | public static let externalParameter = Kind(rawValue: "externalParam")!
| |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
86 | > to in prose.
87 | */
88 | public static let internalParameter = Kind(rawValue: "internalParam")!
| |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
91 | General purpose or unlabeled text.
92 | */
93 | public static let text = Kind(rawValue: "text")!
| |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 | }
[71/104] Compiling ArgumentParser UsageGenerator.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
29 | An attribute in the programming language.
30 | */
31 | public static let attribute = Kind(rawValue: "attribute")!
| |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'attribute' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
34 | An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 | */
36 | public static let numberLiteral = Kind(rawValue: "number")!
| |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'numberLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
39 | A string literal such as `"foo"`.
40 | */
41 | public static let stringLiteral = Kind(rawValue: "string")!
| |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'stringLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
44 | An identifier such as a parameter name.
45 | */
46 | public static let identifier = Kind(rawValue: "identifier")!
| |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
49 | An identifier for a type.
50 | */
51 | public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
| |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
54 | A generic parameter, such as the `T` in C++ `template <typename T>`.
55 | */
56 | public static let genericParameter = Kind(rawValue: "genericParameter")!
| |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
68 | parameter name.
69 | */
70 | public static let externalParameter = Kind(rawValue: "externalParam")!
| |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
86 | > to in prose.
87 | */
88 | public static let internalParameter = Kind(rawValue: "internalParam")!
| |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
91 | General purpose or unlabeled text.
92 | */
93 | public static let text = Kind(rawValue: "text")!
| |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 | }
[72/104] Compiling ArgumentParser CollectionExtensions.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
29 | An attribute in the programming language.
30 | */
31 | public static let attribute = Kind(rawValue: "attribute")!
| |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'attribute' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
34 | An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 | */
36 | public static let numberLiteral = Kind(rawValue: "number")!
| |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'numberLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
39 | A string literal such as `"foo"`.
40 | */
41 | public static let stringLiteral = Kind(rawValue: "string")!
| |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'stringLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
44 | An identifier such as a parameter name.
45 | */
46 | public static let identifier = Kind(rawValue: "identifier")!
| |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
49 | An identifier for a type.
50 | */
51 | public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
| |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
54 | A generic parameter, such as the `T` in C++ `template <typename T>`.
55 | */
56 | public static let genericParameter = Kind(rawValue: "genericParameter")!
| |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
68 | parameter name.
69 | */
70 | public static let externalParameter = Kind(rawValue: "externalParam")!
| |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
86 | > to in prose.
87 | */
88 | public static let internalParameter = Kind(rawValue: "internalParam")!
| |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
91 | General purpose or unlabeled text.
92 | */
93 | public static let text = Kind(rawValue: "text")!
| |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 | }
[73/104] Compiling ArgumentParser Platform.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
29 | An attribute in the programming language.
30 | */
31 | public static let attribute = Kind(rawValue: "attribute")!
| |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'attribute' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
34 | An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 | */
36 | public static let numberLiteral = Kind(rawValue: "number")!
| |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'numberLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
39 | A string literal such as `"foo"`.
40 | */
41 | public static let stringLiteral = Kind(rawValue: "string")!
| |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'stringLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
44 | An identifier such as a parameter name.
45 | */
46 | public static let identifier = Kind(rawValue: "identifier")!
| |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
49 | An identifier for a type.
50 | */
51 | public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
| |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
54 | A generic parameter, such as the `T` in C++ `template <typename T>`.
55 | */
56 | public static let genericParameter = Kind(rawValue: "genericParameter")!
| |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
68 | parameter name.
69 | */
70 | public static let externalParameter = Kind(rawValue: "externalParam")!
| |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
86 | > to in prose.
87 | */
88 | public static let internalParameter = Kind(rawValue: "internalParam")!
| |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
91 | General purpose or unlabeled text.
92 | */
93 | public static let text = Kind(rawValue: "text")!
| |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 | }
[74/104] Compiling ArgumentParser SequenceExtensions.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
24 | A keyword in the programming language, such as `return` in C or `func` in Swift.
25 | */
26 | public static let keyword = Kind(rawValue: "keyword")!
| |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'keyword' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
29 | An attribute in the programming language.
30 | */
31 | public static let attribute = Kind(rawValue: "attribute")!
| |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'attribute' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
34 | An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 | */
36 | public static let numberLiteral = Kind(rawValue: "number")!
| |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'numberLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
39 | A string literal such as `"foo"`.
40 | */
41 | public static let stringLiteral = Kind(rawValue: "string")!
| |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'stringLiteral' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
44 | An identifier such as a parameter name.
45 | */
46 | public static let identifier = Kind(rawValue: "identifier")!
| |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
49 | An identifier for a type.
50 | */
51 | public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
| |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
54 | A generic parameter, such as the `T` in C++ `template <typename T>`.
55 | */
56 | public static let genericParameter = Kind(rawValue: "genericParameter")!
| |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
68 | parameter name.
69 | */
70 | public static let externalParameter = Kind(rawValue: "externalParam")!
| |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
86 | > to in prose.
87 | */
88 | public static let internalParameter = Kind(rawValue: "internalParam")!
| |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 | /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 | The kind of declaration fragment.
16 | */
17 | public struct Kind: Equatable, Codable, RawRepresentable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 | public var rawValue: String
19 | public init?(rawValue: String) {
:
91 | General purpose or unlabeled text.
92 | */
93 | public static let text = Kind(rawValue: "text")!
| |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 | }
[75/105] Wrapping AST for SymbolKit for debugging
[102/106] Wrapping AST for ArgumentParser for debugging
[104/108] Emitting module dump_unified_graph
[105/108] Compiling dump_unified_graph DumpUnifiedGraph.swift
/host/spi-builder-workspace/Sources/dump-unified-graph/DumpUnifiedGraph.swift:118:33: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
116 |
117 | if let output = output, output != "-" {
118 | FileManager.default.createFile(atPath: output, contents: encoded)
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
119 | } else {
120 | let outString = String(data: encoded, encoding: .utf8)
[106/109] Wrapping AST for dump-unified-graph for debugging
[107/109] Write Objects.LinkFileList
[108/109] Linking dump-unified-graph
Build complete! (20.20s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
}
],
"manifest_display_name" : "SymbolKit",
"name" : "SymbolKit",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SymbolKit",
"targets" : [
"SymbolKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "dump-unified-graph",
"targets" : [
"dump-unified-graph"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "dump_unified_graph",
"module_type" : "SwiftTarget",
"name" : "dump-unified-graph",
"path" : "Sources/dump-unified-graph",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"dump-unified-graph"
],
"sources" : [
"DumpUnifiedGraph.swift"
],
"target_dependencies" : [
"SymbolKit"
],
"type" : "executable"
},
{
"c99name" : "SymbolKitTests",
"module_type" : "SwiftTarget",
"name" : "SymbolKitTests",
"path" : "Tests/SymbolKitTests",
"sources" : [
"SymbolGraph/LineList/LineListTests.swift",
"SymbolGraph/LineList/SemanticVersionTests.swift",
"SymbolGraph/ModuleTests.swift",
"SymbolGraph/PlatformTests.swift",
"SymbolGraph/Relationship/HashableTests.swift",
"SymbolGraph/Symbol/SymbolKindTests.swift",
"SymbolGraph/SymbolGraphCreationTests.swift",
"SymbolGraph/SymbolGraphTests.swift",
"SymbolGraph/SymbolTests.swift",
"UnifiedGraph/GraphCollectorTests.swift",
"UnifiedGraph/UnifiedGraphTests.swift",
"UnifiedGraph/UnifiedSymbolTests.swift"
],
"target_dependencies" : [
"SymbolKit"
],
"type" : "test"
},
{
"c99name" : "SymbolKit",
"module_type" : "SwiftTarget",
"name" : "SymbolKit",
"path" : "Sources/SymbolKit",
"product_memberships" : [
"SymbolKit",
"dump-unified-graph"
],
"sources" : [
"Mixin/Mixin+Equals.swift",
"Mixin/Mixin+Hash.swift",
"Mixin/Mixin.swift",
"SymbolGraph/LineList/LineList.swift",
"SymbolGraph/LineList/SourceRange/Position.swift",
"SymbolGraph/LineList/SourceRange/SourceRange.swift",
"SymbolGraph/Metadata.swift",
"SymbolGraph/Module.swift",
"SymbolGraph/OperatingSystem.swift",
"SymbolGraph/Platform.swift",
"SymbolGraph/Relationship/Relationship.swift",
"SymbolGraph/Relationship/RelationshipKind.swift",
"SymbolGraph/Relationship/SourceOrigin.swift",
"SymbolGraph/Relationship/Swift/GenericConstraints.swift",
"SymbolGraph/Relationship/Swift/Swift.swift",
"SymbolGraph/SemanticVersion.swift",
"SymbolGraph/Symbol/AccessControl.swift",
"SymbolGraph/Symbol/Availability/Availability.swift",
"SymbolGraph/Symbol/Availability/AvailabilityItem.swift",
"SymbolGraph/Symbol/Availability/Domain.swift",
"SymbolGraph/Symbol/DeclarationFragments/DeclarationFragments.swift",
"SymbolGraph/Symbol/DeclarationFragments/Fragment/Fragment.swift",
"SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift",
"SymbolGraph/Symbol/FunctionSignature/FunctionParameter.swift",
"SymbolGraph/Symbol/FunctionSignature/FunctionSignature.swift",
"SymbolGraph/Symbol/Identifier.swift",
"SymbolGraph/Symbol/KindIdentifier.swift",
"SymbolGraph/Symbol/Location.swift",
"SymbolGraph/Symbol/Mutability.swift",
"SymbolGraph/Symbol/Names.swift",
"SymbolGraph/Symbol/SPI.swift",
"SymbolGraph/Symbol/Snippet.swift",
"SymbolGraph/Symbol/Swift/Extension.swift",
"SymbolGraph/Symbol/Swift/GenericConstraint.swift",
"SymbolGraph/Symbol/Swift/GenericParameter.swift",
"SymbolGraph/Symbol/Swift/Generics.swift",
"SymbolGraph/Symbol/Swift/Namespace.swift",
"SymbolGraph/Symbol/Symbol.swift",
"SymbolGraph/Symbol/SymbolKind.swift",
"SymbolGraph/SymbolGraph.swift",
"UnifiedSymbolGraph/GraphCollector.swift",
"UnifiedSymbolGraph/UnifiedSymbol+Encodable.swift",
"UnifiedSymbolGraph/UnifiedSymbol.swift",
"UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift",
"UnifiedSymbolGraph/UnifiedSymbolGraph.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.