Build Information
Successful build of SwiftIndexStore, reference 0.5.0 (26d3af), with Swift 6.1 for macOS (SPM) on 22 Feb 2026 11:45:01 UTC.
Swift 6 data race errors: 34
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCapturesBuild Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kateinoigakukun/swift-indexstore.git
Reference: 0.5.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kateinoigakukun/swift-indexstore
* tag 0.5.0 -> FETCH_HEAD
HEAD is now at 26d3af1 Merge pull request #17 from ileitch/bazel9
Cloned https://github.com/kateinoigakukun/swift-indexstore.git
Revision (git rev-parse @):
26d3af186fb38ec3a96c8a9a3172b7ccc3565524
SUCCESS checkout https://github.com/kateinoigakukun/swift-indexstore.git at 0.5.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/kateinoigakukun/swift-indexstore.git
https://github.com/kateinoigakukun/swift-indexstore.git
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
}
],
"manifest_display_name" : "SwiftIndexStore",
"name" : "SwiftIndexStore",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SwiftIndexStore",
"targets" : [
"SwiftIndexStore"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "index-dump-tool",
"targets" : [
"IndexDumpTool"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "_CIndexStore",
"module_type" : "ClangTarget",
"name" : "_CIndexStore",
"path" : "Sources/_CIndexStore",
"product_memberships" : [
"SwiftIndexStore",
"index-dump-tool"
],
"sources" : [
"dummy.c"
],
"type" : "library"
},
{
"c99name" : "SwiftIndexStoreTests",
"module_type" : "SwiftTarget",
"name" : "SwiftIndexStoreTests",
"path" : "Tests/SwiftIndexStoreTests",
"sources" : [
"IndexSpace.swift",
"SwiftIndexStoreTests.swift",
"Toolchain.swift"
],
"target_dependencies" : [
"SwiftIndexStore"
],
"type" : "test"
},
{
"c99name" : "SwiftIndexStore",
"module_type" : "SwiftTarget",
"name" : "SwiftIndexStore",
"path" : "Sources/SwiftIndexStore",
"product_memberships" : [
"SwiftIndexStore",
"index-dump-tool"
],
"sources" : [
"IndexStoreError.swift",
"IndexStoreOccurrence.swift",
"IndexStoreRelation.swift",
"IndexStoreSymbol.swift",
"IndexStoreUnit.swift",
"LibIndexStore.swift",
"OptionSetDisplayable.swift",
"Process+Extension.swift",
"SwiftIndexStore.swift",
"UnfairLock.swift"
],
"target_dependencies" : [
"_CIndexStore"
],
"type" : "library"
},
{
"c99name" : "IndexDumpTool",
"module_type" : "SwiftTarget",
"name" : "IndexDumpTool",
"path" : "Sources/IndexDumpTool",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"index-dump-tool"
],
"sources" : [
"IndexDumpTool.swift",
"main.swift"
],
"target_dependencies" : [
"SwiftIndexStore"
],
"type" : "executable"
}
],
"tools_version" : "5.8"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/12] Write index-dump-tool-entitlement.plist
[2/12] Write sources
[7/12] Compiling _CIndexStore dummy.c
[8/12] Write swift-version-2F0A5646E1D333AE.txt
[10/24] Compiling ArgumentParserToolInfo ToolInfo.swift
[11/24] Emitting module ArgumentParserToolInfo
[12/71] Compiling SwiftIndexStore IndexStoreRelation.swift
[13/71] Compiling SwiftIndexStore IndexStoreOccurrence.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:8:27: warning: static property 'declaration' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
7 |
8 | public static let declaration = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DECLARATION)
| |- warning: static property 'declaration' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'declaration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | public static let definition = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DEFINITION)
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:9:27: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
7 |
8 | public static let declaration = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DECLARATION)
9 | public static let definition = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DEFINITION)
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'definition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:10:27: warning: static property 'reference' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
8 | public static let declaration = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DECLARATION)
9 | public static let definition = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DEFINITION)
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
| |- warning: static property 'reference' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'reference' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:11:27: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
9 | public static let definition = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DEFINITION)
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
| |- warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:12:27: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
| |- warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:13:27: warning: static property 'call' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
| |- warning: static property 'call' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'call' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
15 | public static let addressOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_ADDRESSOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:14:27: warning: static property 'dynamic' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
| |- warning: static property 'dynamic' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'dynamic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let addressOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_ADDRESSOF)
16 | public static let implicit = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_IMPLICIT)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:15:27: warning: static property 'addressOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
15 | public static let addressOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_ADDRESSOF)
| |- warning: static property 'addressOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addressOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | public static let implicit = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_IMPLICIT)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:16:27: warning: static property 'implicit' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
15 | public static let addressOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_ADDRESSOF)
16 | public static let implicit = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_IMPLICIT)
| |- warning: static property 'implicit' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'implicit' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | public static let childOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CHILDOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:18:27: warning: static property 'childOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
16 | public static let implicit = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_IMPLICIT)
17 |
18 | public static let childOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CHILDOF)
| |- warning: static property 'childOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'childOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | public static let baseOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_BASEOF)
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:19:27: warning: static property 'baseOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
17 |
18 | public static let childOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CHILDOF)
19 | public static let baseOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_BASEOF)
| |- warning: static property 'baseOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'baseOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:20:27: warning: static property 'overrideOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
18 | public static let childOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CHILDOF)
19 | public static let baseOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_BASEOF)
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
| |- warning: static property 'overrideOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'overrideOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:21:27: warning: static property 'receivedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
19 | public static let baseOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_BASEOF)
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
| |- warning: static property 'receivedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'receivedBy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:22:27: warning: static property 'calledBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
| |- warning: static property 'calledBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'calledBy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:23:27: warning: static property 'extendedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
| |- warning: static property 'extendedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'extendedBy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:24:27: warning: static property 'accessorOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
| |- warning: static property 'accessorOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'accessorOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
26 | public static let ibTypeOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_IBTYPEOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:25:27: warning: static property 'containedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
| |- warning: static property 'containedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'containedBy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | public static let ibTypeOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_IBTYPEOF)
27 | public static let specializationOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_SPECIALIZATIONOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:26:27: warning: static property 'ibTypeOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
26 | public static let ibTypeOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_IBTYPEOF)
| |- warning: static property 'ibTypeOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ibTypeOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | public static let specializationOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_SPECIALIZATIONOF)
28 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:27:27: warning: static property 'specializationOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
26 | public static let ibTypeOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_IBTYPEOF)
27 | public static let specializationOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_SPECIALIZATIONOF)
| |- warning: static property 'specializationOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'specializationOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | public static let canonical = Role(rawValue: 1 << 63)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:29:27: warning: static property 'canonical' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
27 | public static let specializationOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_SPECIALIZATIONOF)
28 |
29 | public static let canonical = Role(rawValue: 1 << 63)
| |- warning: static property 'canonical' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'canonical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | public static let all = Role(rawValue: ~0)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:31:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
29 | public static let canonical = Role(rawValue: 1 << 63)
30 |
31 | public static let all = Role(rawValue: ~0)
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | public init(rawValue: UInt64) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:41:20: warning: static property 'debugDescriptors' is not concurrency-safe because non-'Sendable' type '[(option: IndexStoreOccurrence.Role, name: String)]' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
39 | }
40 |
41 | static let debugDescriptors: [(option: Role, name: String)] = [
| |- warning: static property 'debugDescriptors' is not concurrency-safe because non-'Sendable' type '[(option: IndexStoreOccurrence.Role, name: String)]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'debugDescriptors' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | (.declaration, "declaration"),
43 | (.definition, "definition"),
[14/71] Compiling SwiftIndexStore IndexStoreUnit.swift
[15/72] Emitting module ArgumentParser
[16/77] Compiling ArgumentParser InputKey.swift
[17/77] Compiling ArgumentParser InputOrigin.swift
[18/77] Compiling ArgumentParser Name.swift
[19/77] Compiling ArgumentParser Parsed.swift
[20/77] Compiling ArgumentParser ParsedValues.swift
[21/77] Compiling SwiftIndexStore SwiftIndexStore.swift
[22/77] Compiling SwiftIndexStore OptionSetDisplayable.swift
[23/77] Compiling SwiftIndexStore LibIndexStore.swift
[24/77] Compiling SwiftIndexStore Process+Extension.swift
[25/77] Compiling SwiftIndexStore IndexStoreSymbol.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:68:27: warning: static property 'generic' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
68 | public static let generic = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GENERIC)
| |- warning: static property 'generic' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'generic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public static let templatePartialSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_PARTIAL_SPECIALIZATION)
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:69:27: warning: static property 'templatePartialSpecialization' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
68 | public static let generic = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GENERIC)
69 | public static let templatePartialSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_PARTIAL_SPECIALIZATION)
| |- warning: static property 'templatePartialSpecialization' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'templatePartialSpecialization' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:70:27: warning: static property 'templateSpecialization' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
68 | public static let generic = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GENERIC)
69 | public static let templatePartialSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_PARTIAL_SPECIALIZATION)
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
| |- warning: static property 'templateSpecialization' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'templateSpecialization' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:71:27: warning: static property 'unittest' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
69 | public static let templatePartialSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_PARTIAL_SPECIALIZATION)
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
| |- warning: static property 'unittest' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'unittest' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:72:27: warning: static property 'ibAnnotated' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
| |- warning: static property 'ibAnnotated' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ibAnnotated' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:73:27: warning: static property 'ibOutletCollection' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
| |- warning: static property 'ibOutletCollection' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ibOutletCollection' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:74:27: warning: static property 'gkinspectable' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
| |- warning: static property 'gkinspectable' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gkinspectable' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
76 | public static let protocolInterface = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_PROTOCOL_INTERFACE)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:75:27: warning: static property 'local' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
| |- warning: static property 'local' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'local' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let protocolInterface = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_PROTOCOL_INTERFACE)
77 | public static let swiftAsync = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_SWIFT_ASYNC)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:76:27: warning: static property 'protocolInterface' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
76 | public static let protocolInterface = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_PROTOCOL_INTERFACE)
| |- warning: static property 'protocolInterface' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'protocolInterface' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let swiftAsync = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_SWIFT_ASYNC)
78 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:77:27: warning: static property 'swiftAsync' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
76 | public static let protocolInterface = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_PROTOCOL_INTERFACE)
77 | public static let swiftAsync = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_SWIFT_ASYNC)
| |- warning: static property 'swiftAsync' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'swiftAsync' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | public init(rawValue: UInt32) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:87:20: warning: static property 'debugDescriptors' is not concurrency-safe because non-'Sendable' type '[(option: IndexStoreSymbol.Property, name: String)]' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
85 | }
86 |
87 | static let debugDescriptors: [(option: IndexStoreSymbol.Property, name: String)] = [
| |- warning: static property 'debugDescriptors' is not concurrency-safe because non-'Sendable' type '[(option: IndexStoreSymbol.Property, name: String)]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'debugDescriptors' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | (.generic, "generic"),
89 | (.templatePartialSpecialization, "templatePartialSpecialization"),
[26/77] Compiling ArgumentParser ArgumentHelp.swift
[27/77] Compiling ArgumentParser ArgumentVisibility.swift
[28/77] Compiling ArgumentParser CompletionKind.swift
[29/77] Compiling ArgumentParser Errors.swift
[30/77] Compiling ArgumentParser Flag.swift
[31/77] Emitting module SwiftIndexStore
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:8:27: warning: static property 'declaration' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
7 |
8 | public static let declaration = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DECLARATION)
| |- warning: static property 'declaration' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'declaration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | public static let definition = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DEFINITION)
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:9:27: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
7 |
8 | public static let declaration = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DECLARATION)
9 | public static let definition = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DEFINITION)
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'definition' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:10:27: warning: static property 'reference' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
8 | public static let declaration = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DECLARATION)
9 | public static let definition = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DEFINITION)
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
| |- warning: static property 'reference' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'reference' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:11:27: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
9 | public static let definition = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DEFINITION)
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
| |- warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:12:27: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
10 | public static let reference = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REFERENCE)
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
| |- warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:13:27: warning: static property 'call' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
11 | public static let read = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_READ)
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
| |- warning: static property 'call' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'call' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
15 | public static let addressOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_ADDRESSOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:14:27: warning: static property 'dynamic' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
12 | public static let write = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_WRITE)
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
| |- warning: static property 'dynamic' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'dynamic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let addressOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_ADDRESSOF)
16 | public static let implicit = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_IMPLICIT)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:15:27: warning: static property 'addressOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
13 | public static let call = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_CALL)
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
15 | public static let addressOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_ADDRESSOF)
| |- warning: static property 'addressOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'addressOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | public static let implicit = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_IMPLICIT)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:16:27: warning: static property 'implicit' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
14 | public static let `dynamic` = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_DYNAMIC)
15 | public static let addressOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_ADDRESSOF)
16 | public static let implicit = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_IMPLICIT)
| |- warning: static property 'implicit' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'implicit' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | public static let childOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CHILDOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:18:27: warning: static property 'childOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
16 | public static let implicit = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_IMPLICIT)
17 |
18 | public static let childOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CHILDOF)
| |- warning: static property 'childOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'childOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | public static let baseOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_BASEOF)
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:19:27: warning: static property 'baseOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
17 |
18 | public static let childOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CHILDOF)
19 | public static let baseOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_BASEOF)
| |- warning: static property 'baseOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'baseOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:20:27: warning: static property 'overrideOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
18 | public static let childOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CHILDOF)
19 | public static let baseOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_BASEOF)
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
| |- warning: static property 'overrideOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'overrideOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:21:27: warning: static property 'receivedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
19 | public static let baseOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_BASEOF)
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
| |- warning: static property 'receivedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'receivedBy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:22:27: warning: static property 'calledBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
20 | public static let overrideOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_OVERRIDEOF)
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
| |- warning: static property 'calledBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'calledBy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:23:27: warning: static property 'extendedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
21 | public static let receivedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_RECEIVEDBY)
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
| |- warning: static property 'extendedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'extendedBy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:24:27: warning: static property 'accessorOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
22 | public static let calledBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CALLEDBY)
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
| |- warning: static property 'accessorOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'accessorOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
26 | public static let ibTypeOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_IBTYPEOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:25:27: warning: static property 'containedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
23 | public static let extendedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_EXTENDEDBY)
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
| |- warning: static property 'containedBy' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'containedBy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | public static let ibTypeOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_IBTYPEOF)
27 | public static let specializationOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_SPECIALIZATIONOF)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:26:27: warning: static property 'ibTypeOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
24 | public static let accessorOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_ACCESSOROF)
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
26 | public static let ibTypeOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_IBTYPEOF)
| |- warning: static property 'ibTypeOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ibTypeOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | public static let specializationOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_SPECIALIZATIONOF)
28 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:27:27: warning: static property 'specializationOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
25 | public static let containedBy = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_CONTAINEDBY)
26 | public static let ibTypeOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_IBTYPEOF)
27 | public static let specializationOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_SPECIALIZATIONOF)
| |- warning: static property 'specializationOf' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'specializationOf' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | public static let canonical = Role(rawValue: 1 << 63)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:29:27: warning: static property 'canonical' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
27 | public static let specializationOf = Role(rawValue: INDEXSTORE_SYMBOL_ROLE_REL_SPECIALIZATIONOF)
28 |
29 | public static let canonical = Role(rawValue: 1 << 63)
| |- warning: static property 'canonical' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'canonical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | public static let all = Role(rawValue: ~0)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:31:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
29 | public static let canonical = Role(rawValue: 1 << 63)
30 |
31 | public static let all = Role(rawValue: ~0)
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'IndexStoreOccurrence.Role' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | public init(rawValue: UInt64) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreOccurrence.swift:41:20: warning: static property 'debugDescriptors' is not concurrency-safe because non-'Sendable' type '[(option: IndexStoreOccurrence.Role, name: String)]' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public struct IndexStoreOccurrence {
4 | public struct Role: OptionSet, Hashable, CustomStringConvertible, OptionSetDisplayable {
| `- note: consider making struct 'Role' conform to the 'Sendable' protocol
5 |
6 | public let rawValue: UInt64
:
39 | }
40 |
41 | static let debugDescriptors: [(option: Role, name: String)] = [
| |- warning: static property 'debugDescriptors' is not concurrency-safe because non-'Sendable' type '[(option: IndexStoreOccurrence.Role, name: String)]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'debugDescriptors' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | (.declaration, "declaration"),
43 | (.definition, "definition"),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:68:27: warning: static property 'generic' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
68 | public static let generic = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GENERIC)
| |- warning: static property 'generic' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'generic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public static let templatePartialSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_PARTIAL_SPECIALIZATION)
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:69:27: warning: static property 'templatePartialSpecialization' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
68 | public static let generic = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GENERIC)
69 | public static let templatePartialSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_PARTIAL_SPECIALIZATION)
| |- warning: static property 'templatePartialSpecialization' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'templatePartialSpecialization' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:70:27: warning: static property 'templateSpecialization' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
68 | public static let generic = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GENERIC)
69 | public static let templatePartialSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_PARTIAL_SPECIALIZATION)
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
| |- warning: static property 'templateSpecialization' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'templateSpecialization' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:71:27: warning: static property 'unittest' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
69 | public static let templatePartialSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_PARTIAL_SPECIALIZATION)
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
| |- warning: static property 'unittest' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'unittest' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:72:27: warning: static property 'ibAnnotated' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
70 | public static let templateSpecialization = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_TEMPLATE_SPECIALIZATION)
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
| |- warning: static property 'ibAnnotated' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ibAnnotated' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:73:27: warning: static property 'ibOutletCollection' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
71 | public static let unittest = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_UNITTEST)
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
| |- warning: static property 'ibOutletCollection' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ibOutletCollection' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:74:27: warning: static property 'gkinspectable' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
72 | public static let ibAnnotated = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBANNOTATED)
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
| |- warning: static property 'gkinspectable' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gkinspectable' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
76 | public static let protocolInterface = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_PROTOCOL_INTERFACE)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:75:27: warning: static property 'local' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
73 | public static let ibOutletCollection = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_IBOUTLETCOLLECTION)
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
| |- warning: static property 'local' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'local' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let protocolInterface = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_PROTOCOL_INTERFACE)
77 | public static let swiftAsync = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_SWIFT_ASYNC)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:76:27: warning: static property 'protocolInterface' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
74 | public static let gkinspectable = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_GKINSPECTABLE)
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
76 | public static let protocolInterface = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_PROTOCOL_INTERFACE)
| |- warning: static property 'protocolInterface' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'protocolInterface' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let swiftAsync = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_SWIFT_ASYNC)
78 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:77:27: warning: static property 'swiftAsync' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
75 | public static let local = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_LOCAL)
76 | public static let protocolInterface = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_PROTOCOL_INTERFACE)
77 | public static let swiftAsync = Property(rawValue: INDEXSTORE_SYMBOL_PROPERTY_SWIFT_ASYNC)
| |- warning: static property 'swiftAsync' is not concurrency-safe because non-'Sendable' type 'IndexStoreSymbol.Property' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'swiftAsync' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | public init(rawValue: UInt32) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftIndexStore/IndexStoreSymbol.swift:87:20: warning: static property 'debugDescriptors' is not concurrency-safe because non-'Sendable' type '[(option: IndexStoreSymbol.Property, name: String)]' may have shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | public struct Property: OptionSet, Hashable, OptionSetDisplayable, CustomStringConvertible {
| `- note: consider making struct 'Property' conform to the 'Sendable' protocol
66 | public let rawValue: UInt32
67 |
:
85 | }
86 |
87 | static let debugDescriptors: [(option: IndexStoreSymbol.Property, name: String)] = [
| |- warning: static property 'debugDescriptors' is not concurrency-safe because non-'Sendable' type '[(option: IndexStoreSymbol.Property, name: String)]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'debugDescriptors' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | (.generic, "generic"),
89 | (.templatePartialSpecialization, "templatePartialSpecialization"),
[32/77] Compiling SwiftIndexStore IndexStoreError.swift
[33/77] Compiling SwiftIndexStore UnfairLock.swift
[34/77] Compiling ArgumentParser CodingKeyValidator.swift
[35/77] Compiling ArgumentParser NonsenseFlagsValidator.swift
[36/77] Compiling ArgumentParser ParsableArgumentsValidation.swift
[37/77] Compiling ArgumentParser PositionalArgumentsValidator.swift
[38/77] Compiling ArgumentParser UniqueNamesValidator.swift
[39/77] Compiling ArgumentParser NameSpecification.swift
[40/77] Compiling ArgumentParser Option.swift
[41/77] Compiling ArgumentParser OptionGroup.swift
[42/77] Compiling ArgumentParser ParentCommand.swift
[43/77] Compiling ArgumentParser AsyncParsableCommand.swift
[44/77] Compiling ArgumentParser MessageInfo.swift
[45/77] Compiling ArgumentParser UsageGenerator.swift
[46/77] Compiling ArgumentParser CollectionExtensions.swift
[47/77] Compiling ArgumentParser Foundation.swift
[48/77] Compiling ArgumentParser Mutex.swift
[49/77] Compiling ArgumentParser Platform.swift
[50/77] Compiling ArgumentParser SequenceExtensions.swift
[51/77] Compiling ArgumentParser StringExtensions.swift
[52/77] Compiling ArgumentParser SwiftExtensions.swift
[53/77] Compiling ArgumentParser Tree.swift
[54/77] Compiling ArgumentParser BashCompletionsGenerator.swift
[55/77] Compiling ArgumentParser CompletionsGenerator.swift
[56/77] Compiling ArgumentParser FishCompletionsGenerator.swift
[57/77] Compiling ArgumentParser ZshCompletionsGenerator.swift
[58/77] Compiling ArgumentParser Argument.swift
[59/77] Compiling ArgumentParser ArgumentDiscussion.swift
[60/77] Compiling ArgumentParser ParserError.swift
[61/77] Compiling ArgumentParser SplitArguments.swift
[62/77] Compiling ArgumentParser DumpHelpGenerator.swift
[63/77] Compiling ArgumentParser HelpCommand.swift
[64/77] Compiling ArgumentParser HelpGenerator.swift
[65/77] Compiling ArgumentParser ParsableCommand.swift
[66/77] Compiling ArgumentParser ArgumentDecoder.swift
[67/77] Compiling ArgumentParser ArgumentDefinition.swift
[68/77] Compiling ArgumentParser ArgumentSet.swift
[69/77] Compiling ArgumentParser CommandParser.swift
[70/77] Compiling ArgumentParser CommandConfiguration.swift
[71/77] Compiling ArgumentParser CommandGroup.swift
[72/77] Compiling ArgumentParser EnumerableFlag.swift
[73/77] Compiling ArgumentParser ExpressibleByArgument.swift
[74/77] Compiling ArgumentParser ParsableArguments.swift
[75/80] Compiling IndexDumpTool main.swift
[76/80] Emitting module IndexDumpTool
/Users/admin/builder/spi-builder-workspace/Sources/IndexDumpTool/IndexDumpTool.swift:16:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | static var configuration = CommandConfiguration(subcommands: [
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | PrintUnit.self, PrintRecord.self
18 | ])
[77/80] Compiling IndexDumpTool IndexDumpTool.swift
/Users/admin/builder/spi-builder-workspace/Sources/IndexDumpTool/IndexDumpTool.swift:16:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | static var configuration = CommandConfiguration(subcommands: [
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | PrintUnit.self, PrintRecord.self
18 | ])
[77/80] Write Objects.LinkFileList
[78/80] Linking index-dump-tool
[79/80] Applying index-dump-tool
Build complete! (12.01s)
Fetching https://github.com/apple/swift-argument-parser from cache
Fetched https://github.com/apple/swift-argument-parser from cache (1.41s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.0 (1.92s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.7.0
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
}
],
"manifest_display_name" : "SwiftIndexStore",
"name" : "SwiftIndexStore",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SwiftIndexStore",
"targets" : [
"SwiftIndexStore"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "index-dump-tool",
"targets" : [
"IndexDumpTool"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "_CIndexStore",
"module_type" : "ClangTarget",
"name" : "_CIndexStore",
"path" : "Sources/_CIndexStore",
"product_memberships" : [
"SwiftIndexStore",
"index-dump-tool"
],
"sources" : [
"dummy.c"
],
"type" : "library"
},
{
"c99name" : "SwiftIndexStoreTests",
"module_type" : "SwiftTarget",
"name" : "SwiftIndexStoreTests",
"path" : "Tests/SwiftIndexStoreTests",
"sources" : [
"IndexSpace.swift",
"SwiftIndexStoreTests.swift",
"Toolchain.swift"
],
"target_dependencies" : [
"SwiftIndexStore"
],
"type" : "test"
},
{
"c99name" : "SwiftIndexStore",
"module_type" : "SwiftTarget",
"name" : "SwiftIndexStore",
"path" : "Sources/SwiftIndexStore",
"product_memberships" : [
"SwiftIndexStore",
"index-dump-tool"
],
"sources" : [
"IndexStoreError.swift",
"IndexStoreOccurrence.swift",
"IndexStoreRelation.swift",
"IndexStoreSymbol.swift",
"IndexStoreUnit.swift",
"LibIndexStore.swift",
"OptionSetDisplayable.swift",
"Process+Extension.swift",
"SwiftIndexStore.swift",
"UnfairLock.swift"
],
"target_dependencies" : [
"_CIndexStore"
],
"type" : "library"
},
{
"c99name" : "IndexDumpTool",
"module_type" : "SwiftTarget",
"name" : "IndexDumpTool",
"path" : "Sources/IndexDumpTool",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"index-dump-tool"
],
"sources" : [
"IndexDumpTool.swift",
"main.swift"
],
"target_dependencies" : [
"SwiftIndexStore"
],
"type" : "executable"
}
],
"tools_version" : "5.8"
}
Done.