Build Information
Successful build of MusicTheory, reference 1.3.1 (c98ffa
), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 27 Apr 2025 17:57:17 UTC.
Swift 6 data race errors: 132
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme MusicTheory -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:29:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tonicProlongationFunctions: [HarmonicFunctionType] = [.mediant, .submediant]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:32:21: warning: static property 'predominantFunctions' is not concurrency-safe because non-'Sendable' type '[HarmonicFunctionType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let predominantFunctions: [HarmonicFunctionType] = [.supertonic, .submediant]
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:12:13: note: consider making enum 'HarmonicFunctionType' conform to the 'Sendable' protocol
public enum HarmonicFunctionType: Int, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:32:21: note: add '@MainActor' to make static property 'predominantFunctions' part of global actor 'MainActor'
public static let predominantFunctions: [HarmonicFunctionType] = [.supertonic, .submediant]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:32:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let predominantFunctions: [HarmonicFunctionType] = [.supertonic, .submediant]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:35:21: warning: static property 'dominantFunctions' is not concurrency-safe because non-'Sendable' type '[HarmonicFunctionType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dominantFunctions: [HarmonicFunctionType] = [.dominant, .leading]
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:12:13: note: consider making enum 'HarmonicFunctionType' conform to the 'Sendable' protocol
public enum HarmonicFunctionType: Int, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:35:21: note: add '@MainActor' to make static property 'dominantFunctions' part of global actor 'MainActor'
public static let dominantFunctions: [HarmonicFunctionType] = [.dominant, .leading]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/HarmonicFunctions.swift:35:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dominantFunctions: [HarmonicFunctionType] = [.dominant, .leading]
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Interval.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:91:21: warning: static property 'P1' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P1 = Interval(quality: .perfect, degree: 1, semitones: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:91:21: note: add '@MainActor' to make static property 'P1' part of global actor 'MainActor'
public static let P1 = Interval(quality: .perfect, degree: 1, semitones: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:91:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P1 = Interval(quality: .perfect, degree: 1, semitones: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:93:21: warning: static property 'P4' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P4 = Interval(quality: .perfect, degree: 4, semitones: 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:93:21: note: add '@MainActor' to make static property 'P4' part of global actor 'MainActor'
public static let P4 = Interval(quality: .perfect, degree: 4, semitones: 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:93:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P4 = Interval(quality: .perfect, degree: 4, semitones: 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:95:21: warning: static property 'P5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:95:21: note: add '@MainActor' to make static property 'P5' part of global actor 'MainActor'
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:95:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P5 = Interval(quality: .perfect, degree: 5, semitones: 7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:21: warning: static property 'P8' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P8 = Interval(quality: .perfect, degree: 8, semitones: 12)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:21: note: add '@MainActor' to make static property 'P8' part of global actor 'MainActor'
public static let P8 = Interval(quality: .perfect, degree: 8, semitones: 12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:97:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P8 = Interval(quality: .perfect, degree: 8, semitones: 12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:99:21: warning: static property 'P11' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:99:21: note: add '@MainActor' to make static property 'P11' part of global actor 'MainActor'
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:99:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P11 = Interval(quality: .perfect, degree: 11, semitones: 17)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:21: warning: static property 'P12' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P12 = Interval(quality: .perfect, degree: 12, semitones: 19)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:21: note: add '@MainActor' to make static property 'P12' part of global actor 'MainActor'
public static let P12 = Interval(quality: .perfect, degree: 12, semitones: 19)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:101:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P12 = Interval(quality: .perfect, degree: 12, semitones: 19)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:103:21: warning: static property 'P15' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let P15 = Interval(quality: .perfect, degree: 15, semitones: 24)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:103:21: note: add '@MainActor' to make static property 'P15' part of global actor 'MainActor'
public static let P15 = Interval(quality: .perfect, degree: 15, semitones: 24)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:103:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let P15 = Interval(quality: .perfect, degree: 15, semitones: 24)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:106:21: warning: static property 'm2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m2 = Interval(quality: .minor, degree: 2, semitones: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:106:21: note: add '@MainActor' to make static property 'm2' part of global actor 'MainActor'
public static let m2 = Interval(quality: .minor, degree: 2, semitones: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:106:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m2 = Interval(quality: .minor, degree: 2, semitones: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:108:21: warning: static property 'm3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:108:21: note: add '@MainActor' to make static property 'm3' part of global actor 'MainActor'
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:108:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m3 = Interval(quality: .minor, degree: 3, semitones: 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:21: warning: static property 'm6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m6 = Interval(quality: .minor, degree: 6, semitones: 8)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:21: note: add '@MainActor' to make static property 'm6' part of global actor 'MainActor'
public static let m6 = Interval(quality: .minor, degree: 6, semitones: 8)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:110:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m6 = Interval(quality: .minor, degree: 6, semitones: 8)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:112:21: warning: static property 'm7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:112:21: note: add '@MainActor' to make static property 'm7' part of global actor 'MainActor'
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:112:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m7 = Interval(quality: .minor, degree: 7, semitones: 10)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:21: warning: static property 'm9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:21: note: add '@MainActor' to make static property 'm9' part of global actor 'MainActor'
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:114:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m9 = Interval(quality: .minor, degree: 9, semitones: 13)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:21: warning: static property 'm10' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m10 = Interval(quality: .minor, degree: 10, semitones: 15)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:21: note: add '@MainActor' to make static property 'm10' part of global actor 'MainActor'
public static let m10 = Interval(quality: .minor, degree: 10, semitones: 15)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:116:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m10 = Interval(quality: .minor, degree: 10, semitones: 15)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:118:21: warning: static property 'm13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:118:21: note: add '@MainActor' to make static property 'm13' part of global actor 'MainActor'
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:118:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m13 = Interval(quality: .minor, degree: 13, semitones: 20)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:21: warning: static property 'm14' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let m14 = Interval(quality: .minor, degree: 14, semitones: 22)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:21: note: add '@MainActor' to make static property 'm14' part of global actor 'MainActor'
public static let m14 = Interval(quality: .minor, degree: 14, semitones: 22)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:120:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let m14 = Interval(quality: .minor, degree: 14, semitones: 22)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:123:21: warning: static property 'M2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:123:21: note: add '@MainActor' to make static property 'M2' part of global actor 'MainActor'
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:123:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M2 = Interval(quality: .major, degree: 2, semitones: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:21: warning: static property 'M3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:21: note: add '@MainActor' to make static property 'M3' part of global actor 'MainActor'
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:125:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M3 = Interval(quality: .major, degree: 3, semitones: 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:21: warning: static property 'M6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:21: note: add '@MainActor' to make static property 'M6' part of global actor 'MainActor'
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:127:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M6 = Interval(quality: .major, degree: 6, semitones: 9)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:21: warning: static property 'M7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:21: note: add '@MainActor' to make static property 'M7' part of global actor 'MainActor'
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:129:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M7 = Interval(quality: .major, degree: 7, semitones: 11)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:21: warning: static property 'M9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:21: note: add '@MainActor' to make static property 'M9' part of global actor 'MainActor'
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:131:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M9 = Interval(quality: .major, degree: 9, semitones: 14)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:21: warning: static property 'M10' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M10 = Interval(quality: .major, degree: 10, semitones: 16)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:21: note: add '@MainActor' to make static property 'M10' part of global actor 'MainActor'
public static let M10 = Interval(quality: .major, degree: 10, semitones: 16)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:133:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M10 = Interval(quality: .major, degree: 10, semitones: 16)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:135:21: warning: static property 'M13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:135:21: note: add '@MainActor' to make static property 'M13' part of global actor 'MainActor'
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:135:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M13 = Interval(quality: .major, degree: 13, semitones: 21)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:21: warning: static property 'M14' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let M14 = Interval(quality: .major, degree: 14, semitones: 23)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:21: note: add '@MainActor' to make static property 'M14' part of global actor 'MainActor'
public static let M14 = Interval(quality: .major, degree: 14, semitones: 23)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:137:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let M14 = Interval(quality: .major, degree: 14, semitones: 23)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:140:21: warning: static property 'd1' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d1 = Interval(quality: .diminished, degree: 1, semitones: -1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:140:21: note: add '@MainActor' to make static property 'd1' part of global actor 'MainActor'
public static let d1 = Interval(quality: .diminished, degree: 1, semitones: -1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:140:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d1 = Interval(quality: .diminished, degree: 1, semitones: -1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:142:21: warning: static property 'd2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d2 = Interval(quality: .diminished, degree: 2, semitones: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:142:21: note: add '@MainActor' to make static property 'd2' part of global actor 'MainActor'
public static let d2 = Interval(quality: .diminished, degree: 2, semitones: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:142:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d2 = Interval(quality: .diminished, degree: 2, semitones: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:144:21: warning: static property 'd3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d3 = Interval(quality: .diminished, degree: 3, semitones: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:144:21: note: add '@MainActor' to make static property 'd3' part of global actor 'MainActor'
public static let d3 = Interval(quality: .diminished, degree: 3, semitones: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:144:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d3 = Interval(quality: .diminished, degree: 3, semitones: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:146:21: warning: static property 'd4' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d4 = Interval(quality: .diminished, degree: 4, semitones: 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:146:21: note: add '@MainActor' to make static property 'd4' part of global actor 'MainActor'
public static let d4 = Interval(quality: .diminished, degree: 4, semitones: 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:146:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d4 = Interval(quality: .diminished, degree: 4, semitones: 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:148:21: warning: static property 'd5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:148:21: note: add '@MainActor' to make static property 'd5' part of global actor 'MainActor'
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:148:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d5 = Interval(quality: .diminished, degree: 5, semitones: 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:21: warning: static property 'd6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d6 = Interval(quality: .diminished, degree: 6, semitones: 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:21: note: add '@MainActor' to make static property 'd6' part of global actor 'MainActor'
public static let d6 = Interval(quality: .diminished, degree: 6, semitones: 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:150:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d6 = Interval(quality: .diminished, degree: 6, semitones: 7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:152:21: warning: static property 'd7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d7 = Interval(quality: .diminished, degree: 7, semitones: 9)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:152:21: note: add '@MainActor' to make static property 'd7' part of global actor 'MainActor'
public static let d7 = Interval(quality: .diminished, degree: 7, semitones: 9)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:152:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d7 = Interval(quality: .diminished, degree: 7, semitones: 9)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:154:21: warning: static property 'd8' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d8 = Interval(quality: .diminished, degree: 8, semitones: 11)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:154:21: note: add '@MainActor' to make static property 'd8' part of global actor 'MainActor'
public static let d8 = Interval(quality: .diminished, degree: 8, semitones: 11)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:154:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d8 = Interval(quality: .diminished, degree: 8, semitones: 11)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:156:21: warning: static property 'd9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d9 = Interval(quality: .diminished, degree: 9, semitones: 12)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:156:21: note: add '@MainActor' to make static property 'd9' part of global actor 'MainActor'
public static let d9 = Interval(quality: .diminished, degree: 9, semitones: 12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:156:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d9 = Interval(quality: .diminished, degree: 9, semitones: 12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:158:21: warning: static property 'd10' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d10 = Interval(quality: .diminished, degree: 10, semitones: 14)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:158:21: note: add '@MainActor' to make static property 'd10' part of global actor 'MainActor'
public static let d10 = Interval(quality: .diminished, degree: 10, semitones: 14)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:158:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d10 = Interval(quality: .diminished, degree: 10, semitones: 14)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:160:21: warning: static property 'd11' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d11 = Interval(quality: .diminished, degree: 11, semitones: 16)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:160:21: note: add '@MainActor' to make static property 'd11' part of global actor 'MainActor'
public static let d11 = Interval(quality: .diminished, degree: 11, semitones: 16)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:160:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d11 = Interval(quality: .diminished, degree: 11, semitones: 16)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:162:21: warning: static property 'd12' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d12 = Interval(quality: .diminished, degree: 12, semitones: 18)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:162:21: note: add '@MainActor' to make static property 'd12' part of global actor 'MainActor'
public static let d12 = Interval(quality: .diminished, degree: 12, semitones: 18)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:162:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d12 = Interval(quality: .diminished, degree: 12, semitones: 18)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:164:21: warning: static property 'd13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d13 = Interval(quality: .diminished, degree: 13, semitones: 19)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:164:21: note: add '@MainActor' to make static property 'd13' part of global actor 'MainActor'
public static let d13 = Interval(quality: .diminished, degree: 13, semitones: 19)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:164:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d13 = Interval(quality: .diminished, degree: 13, semitones: 19)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:166:21: warning: static property 'd14' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d14 = Interval(quality: .diminished, degree: 14, semitones: 21)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:166:21: note: add '@MainActor' to make static property 'd14' part of global actor 'MainActor'
public static let d14 = Interval(quality: .diminished, degree: 14, semitones: 21)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:166:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d14 = Interval(quality: .diminished, degree: 14, semitones: 21)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:168:21: warning: static property 'd15' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let d15 = Interval(quality: .diminished, degree: 15, semitones: 23)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:168:21: note: add '@MainActor' to make static property 'd15' part of global actor 'MainActor'
public static let d15 = Interval(quality: .diminished, degree: 15, semitones: 23)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:168:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let d15 = Interval(quality: .diminished, degree: 15, semitones: 23)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:171:21: warning: static property 'A1' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A1 = Interval(quality: .augmented, degree: 1, semitones: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:171:21: note: add '@MainActor' to make static property 'A1' part of global actor 'MainActor'
public static let A1 = Interval(quality: .augmented, degree: 1, semitones: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:171:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A1 = Interval(quality: .augmented, degree: 1, semitones: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:173:21: warning: static property 'A2' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A2 = Interval(quality: .augmented, degree: 2, semitones: 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:173:21: note: add '@MainActor' to make static property 'A2' part of global actor 'MainActor'
public static let A2 = Interval(quality: .augmented, degree: 2, semitones: 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:173:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A2 = Interval(quality: .augmented, degree: 2, semitones: 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:175:21: warning: static property 'A3' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A3 = Interval(quality: .augmented, degree: 3, semitones: 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:175:21: note: add '@MainActor' to make static property 'A3' part of global actor 'MainActor'
public static let A3 = Interval(quality: .augmented, degree: 3, semitones: 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:175:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A3 = Interval(quality: .augmented, degree: 3, semitones: 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:177:21: warning: static property 'A4' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A4 = Interval(quality: .augmented, degree: 4, semitones: 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:177:21: note: add '@MainActor' to make static property 'A4' part of global actor 'MainActor'
public static let A4 = Interval(quality: .augmented, degree: 4, semitones: 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:177:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A4 = Interval(quality: .augmented, degree: 4, semitones: 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:179:21: warning: static property 'A5' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:179:21: note: add '@MainActor' to make static property 'A5' part of global actor 'MainActor'
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:179:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A5 = Interval(quality: .augmented, degree: 5, semitones: 8)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:21: warning: static property 'A6' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A6 = Interval(quality: .augmented, degree: 6, semitones: 10)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:21: note: add '@MainActor' to make static property 'A6' part of global actor 'MainActor'
public static let A6 = Interval(quality: .augmented, degree: 6, semitones: 10)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:181:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A6 = Interval(quality: .augmented, degree: 6, semitones: 10)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:183:21: warning: static property 'A7' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A7 = Interval(quality: .augmented, degree: 7, semitones: 12)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:183:21: note: add '@MainActor' to make static property 'A7' part of global actor 'MainActor'
public static let A7 = Interval(quality: .augmented, degree: 7, semitones: 12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:183:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A7 = Interval(quality: .augmented, degree: 7, semitones: 12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:185:21: warning: static property 'A8' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A8 = Interval(quality: .augmented, degree: 8, semitones: 13)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:185:21: note: add '@MainActor' to make static property 'A8' part of global actor 'MainActor'
public static let A8 = Interval(quality: .augmented, degree: 8, semitones: 13)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:185:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A8 = Interval(quality: .augmented, degree: 8, semitones: 13)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:187:21: warning: static property 'A9' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:187:21: note: add '@MainActor' to make static property 'A9' part of global actor 'MainActor'
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:187:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A9 = Interval(quality: .augmented, degree: 9, semitones: 15)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:21: warning: static property 'A10' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A10 = Interval(quality: .augmented, degree: 10, semitones: 17)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:21: note: add '@MainActor' to make static property 'A10' part of global actor 'MainActor'
public static let A10 = Interval(quality: .augmented, degree: 10, semitones: 17)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:189:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A10 = Interval(quality: .augmented, degree: 10, semitones: 17)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:191:21: warning: static property 'A11' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:191:21: note: add '@MainActor' to make static property 'A11' part of global actor 'MainActor'
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:191:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A11 = Interval(quality: .augmented, degree: 11, semitones: 18)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:21: warning: static property 'A12' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A12 = Interval(quality: .augmented, degree: 12, semitones: 20)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:21: note: add '@MainActor' to make static property 'A12' part of global actor 'MainActor'
public static let A12 = Interval(quality: .augmented, degree: 12, semitones: 20)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:193:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A12 = Interval(quality: .augmented, degree: 12, semitones: 20)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:195:21: warning: static property 'A13' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:195:21: note: add '@MainActor' to make static property 'A13' part of global actor 'MainActor'
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:195:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A13 = Interval(quality: .augmented, degree: 13, semitones: 22)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:21: warning: static property 'A14' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A14 = Interval(quality: .augmented, degree: 14, semitones: 24)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:21: note: add '@MainActor' to make static property 'A14' part of global actor 'MainActor'
public static let A14 = Interval(quality: .augmented, degree: 14, semitones: 24)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:197:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A14 = Interval(quality: .augmented, degree: 14, semitones: 24)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:199:21: warning: static property 'A15' is not concurrency-safe because non-'Sendable' type 'Interval' may have shared mutable state; this is an error in the Swift 6 language mode
public static let A15 = Interval(quality: .augmented, degree: 15, semitones: 25)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:199:21: note: add '@MainActor' to make static property 'A15' part of global actor 'MainActor'
public static let A15 = Interval(quality: .augmented, degree: 15, semitones: 25)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:199:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let A15 = Interval(quality: .augmented, degree: 15, semitones: 25)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:202:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Interval]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: [Interval] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:32:15: note: consider making struct 'Interval' conform to the 'Sendable' protocol
public struct Interval: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:202:21: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all: [Interval] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Interval.swift:202:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: [Interval] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ChordProgression.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:62:21: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[ChordProgressionNode]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: [ChordProgressionNode] = [.i, .ii, .iii, .iv, .v, .vi, .vii]
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:25:13: note: consider making enum 'ChordProgressionNode' conform to the 'Sendable' protocol
public enum ChordProgressionNode: Int, CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:62:21: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all: [ChordProgressionNode] = [.i, .ii, .iii, .iv, .v, .vi, .vii]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:62:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: [ChordProgressionNode] = [.i, .ii, .iii, .iv, .v, .vi, .vii]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:83:21: warning: static property 'allNodes' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allNodes = ChordProgression(nodes: [.i, .ii, .iii, .iv, .v, .vi, .vii])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:83:21: note: add '@MainActor' to make static property 'allNodes' part of global actor 'MainActor'
public static let allNodes = ChordProgression(nodes: [.i, .ii, .iii, .iv, .v, .vi, .vii])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:83:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allNodes = ChordProgression(nodes: [.i, .ii, .iii, .iv, .v, .vi, .vii])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:85:21: warning: static property 'i_v_vi_iv' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_v_vi_iv = ChordProgression(nodes: [.i, .v, .vi, .iv])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:85:21: note: add '@MainActor' to make static property 'i_v_vi_iv' part of global actor 'MainActor'
public static let i_v_vi_iv = ChordProgression(nodes: [.i, .v, .vi, .iv])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:85:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_v_vi_iv = ChordProgression(nodes: [.i, .v, .vi, .iv])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:87:21: warning: static property 'vi_v_iv_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let vi_v_iv_v = ChordProgression(nodes: [.vi, .v, .iv, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:87:21: note: add '@MainActor' to make static property 'vi_v_iv_v' part of global actor 'MainActor'
public static let vi_v_iv_v = ChordProgression(nodes: [.vi, .v, .iv, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:87:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let vi_v_iv_v = ChordProgression(nodes: [.vi, .v, .iv, .v])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:89:21: warning: static property 'i_vi_iv_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_vi_iv_v = ChordProgression(nodes: [.i, .vi, .iv, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:89:21: note: add '@MainActor' to make static property 'i_vi_iv_v' part of global actor 'MainActor'
public static let i_vi_iv_v = ChordProgression(nodes: [.i, .vi, .iv, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:89:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_vi_iv_v = ChordProgression(nodes: [.i, .vi, .iv, .v])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:91:21: warning: static property 'i_iv_vi_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_iv_vi_v = ChordProgression(nodes: [.i, .iv, .vi, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:91:21: note: add '@MainActor' to make static property 'i_iv_vi_v' part of global actor 'MainActor'
public static let i_iv_vi_v = ChordProgression(nodes: [.i, .iv, .vi, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:91:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_iv_vi_v = ChordProgression(nodes: [.i, .iv, .vi, .v])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:93:21: warning: static property 'i_v_iv_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_v_iv_v = ChordProgression(nodes: [.i, .v, .iv, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:93:21: note: add '@MainActor' to make static property 'i_v_iv_v' part of global actor 'MainActor'
public static let i_v_iv_v = ChordProgression(nodes: [.i, .v, .iv, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:93:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_v_iv_v = ChordProgression(nodes: [.i, .v, .iv, .v])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:95:21: warning: static property 'vi_ii_v_i' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let vi_ii_v_i = ChordProgression(nodes: [.vi, .ii, .v, .i])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:95:21: note: add '@MainActor' to make static property 'vi_ii_v_i' part of global actor 'MainActor'
public static let vi_ii_v_i = ChordProgression(nodes: [.vi, .ii, .v, .i])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:95:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let vi_ii_v_i = ChordProgression(nodes: [.vi, .ii, .v, .i])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:97:21: warning: static property 'i_vi_ii_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_vi_ii_v = ChordProgression(nodes: [.i, .vi, .ii, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:97:21: note: add '@MainActor' to make static property 'i_vi_ii_v' part of global actor 'MainActor'
public static let i_vi_ii_v = ChordProgression(nodes: [.i, .vi, .ii, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:97:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_vi_ii_v = ChordProgression(nodes: [.i, .vi, .ii, .v])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:99:21: warning: static property 'i_iv_ii_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_iv_ii_v = ChordProgression(nodes: [.i, .iv, .ii, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:99:21: note: add '@MainActor' to make static property 'i_iv_ii_v' part of global actor 'MainActor'
public static let i_iv_ii_v = ChordProgression(nodes: [.i, .iv, .ii, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:99:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_iv_ii_v = ChordProgression(nodes: [.i, .iv, .ii, .v])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:101:21: warning: static property 'vi_iv_i_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let vi_iv_i_v = ChordProgression(nodes: [.vi, .iv, .i, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:101:21: note: add '@MainActor' to make static property 'vi_iv_i_v' part of global actor 'MainActor'
public static let vi_iv_i_v = ChordProgression(nodes: [.vi, .iv, .i, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:101:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let vi_iv_i_v = ChordProgression(nodes: [.vi, .iv, .i, .v])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:103:21: warning: static property 'i_vi_iii_vii' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_vi_iii_vii = ChordProgression(nodes: [.i, .vi, .iii, .vii])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:103:21: note: add '@MainActor' to make static property 'i_vi_iii_vii' part of global actor 'MainActor'
public static let i_vi_iii_vii = ChordProgression(nodes: [.i, .vi, .iii, .vii])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:103:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_vi_iii_vii = ChordProgression(nodes: [.i, .vi, .iii, .vii])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:105:21: warning: static property 'vi_v_iv_iii' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let vi_v_iv_iii = ChordProgression(nodes: [.vi, .v, .iv, .iii])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:105:21: note: add '@MainActor' to make static property 'vi_v_iv_iii' part of global actor 'MainActor'
public static let vi_v_iv_iii = ChordProgression(nodes: [.vi, .v, .iv, .iii])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:105:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let vi_v_iv_iii = ChordProgression(nodes: [.vi, .v, .iv, .iii])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:107:21: warning: static property 'i_v_vi_iii_iv_i_iv_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_v_vi_iii_iv_i_iv_v = ChordProgression(nodes: [.i, .v, .vi, .iii, .iv, .i, .iv, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:107:21: note: add '@MainActor' to make static property 'i_v_vi_iii_iv_i_iv_v' part of global actor 'MainActor'
public static let i_v_vi_iii_iv_i_iv_v = ChordProgression(nodes: [.i, .v, .vi, .iii, .iv, .i, .iv, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:107:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_v_vi_iii_iv_i_iv_v = ChordProgression(nodes: [.i, .v, .vi, .iii, .iv, .i, .iv, .v])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:109:21: warning: static property 'iv_i_v_iv' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let iv_i_v_iv = ChordProgression(nodes: [.iv, .i, .v, .iv])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:109:21: note: add '@MainActor' to make static property 'iv_i_v_iv' part of global actor 'MainActor'
public static let iv_i_v_iv = ChordProgression(nodes: [.iv, .i, .v, .iv])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:109:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let iv_i_v_iv = ChordProgression(nodes: [.iv, .i, .v, .iv])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:111:21: warning: static property 'i_ii_vi_iv' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_ii_vi_iv = ChordProgression(nodes: [.i, .ii, .vi, .iv])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:111:21: note: add '@MainActor' to make static property 'i_ii_vi_iv' part of global actor 'MainActor'
public static let i_ii_vi_iv = ChordProgression(nodes: [.i, .ii, .vi, .iv])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:111:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_ii_vi_iv = ChordProgression(nodes: [.i, .ii, .vi, .iv])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:113:21: warning: static property 'i_iii_vi_iv' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_iii_vi_iv = ChordProgression(nodes: [.i, .iii, .vi, .iv])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:113:21: note: add '@MainActor' to make static property 'i_iii_vi_iv' part of global actor 'MainActor'
public static let i_iii_vi_iv = ChordProgression(nodes: [.i, .iii, .vi, .iv])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:113:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_iii_vi_iv = ChordProgression(nodes: [.i, .iii, .vi, .iv])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:115:21: warning: static property 'i_v_ii_iv' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let i_v_ii_iv = ChordProgression(nodes: [.i, .v, .ii, .iv])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:115:21: note: add '@MainActor' to make static property 'i_v_ii_iv' part of global actor 'MainActor'
public static let i_v_ii_iv = ChordProgression(nodes: [.i, .v, .ii, .iv])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:115:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let i_v_ii_iv = ChordProgression(nodes: [.i, .v, .ii, .iv])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:117:21: warning: static property 'ii_iv_i_v' is not concurrency-safe because non-'Sendable' type 'ChordProgression' may have shared mutable state; this is an error in the Swift 6 language mode
public static let ii_iv_i_v = ChordProgression(nodes: [.ii, .iv, .i, .v])
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:81:15: note: consider making struct 'ChordProgression' conform to the 'Sendable' protocol
public struct ChordProgression: CustomStringConvertible, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:117:21: note: add '@MainActor' to make static property 'ii_iv_i_v' part of global actor 'MainActor'
public static let ii_iv_i_v = ChordProgression(nodes: [.ii, .iv, .i, .v])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/ChordProgression.swift:117:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let ii_iv_i_v = ChordProgression(nodes: [.ii, .iv, .i, .v])
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Key.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Key.KeyType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:42:15: note: consider making enum 'KeyType' conform to the 'Sendable' protocol
public enum KeyType: Int, Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: [KeyType] = [.c, .d, .e, .f, .g, .a, .b]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:21: warning: static property 'keysWithSharps' is not concurrency-safe because non-'Sendable' type '[Key]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let keysWithSharps = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:40:15: note: consider making struct 'Key' conform to the 'Sendable' protocol
public struct Key: Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:21: note: add '@MainActor' to make static property 'keysWithSharps' part of global actor 'MainActor'
public static let keysWithSharps = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:157:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let keysWithSharps = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:21: warning: static property 'keysWithFlats' is not concurrency-safe because non-'Sendable' type '[Key]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let keysWithFlats = [
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:40:15: note: consider making struct 'Key' conform to the 'Sendable' protocol
public struct Key: Codable, Equatable, Hashable, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:21: note: add '@MainActor' to make static property 'keysWithFlats' part of global actor 'MainActor'
public static let keysWithFlats = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Key.swift:173:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let keysWithFlats = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Scale.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:18:21: warning: static property 'major' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let major = ScaleType(intervals: ScaleType.ionian.intervals, description: "Major")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:18:21: note: add '@MainActor' to make static property 'major' part of global actor 'MainActor'
public static let major = ScaleType(intervals: ScaleType.ionian.intervals, description: "Major")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let major = ScaleType(intervals: ScaleType.ionian.intervals, description: "Major")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:20:21: warning: static property 'minor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let minor = ScaleType(intervals: ScaleType.aeolian.intervals, description: "Minor")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:20:21: note: add '@MainActor' to make static property 'minor' part of global actor 'MainActor'
public static let minor = ScaleType(intervals: ScaleType.aeolian.intervals, description: "Minor")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:20:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let minor = ScaleType(intervals: ScaleType.aeolian.intervals, description: "Minor")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:22:21: warning: static property 'harmonicMinor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let harmonicMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .M7], description: "Harmonic Minor")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:22:21: note: add '@MainActor' to make static property 'harmonicMinor' part of global actor 'MainActor'
public static let harmonicMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .M7], description: "Harmonic Minor")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:22:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let harmonicMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .M7], description: "Harmonic Minor")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:24:21: warning: static property 'melodicMinor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let melodicMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .M6, .M7], description: "Melodic Minor")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:24:21: note: add '@MainActor' to make static property 'melodicMinor' part of global actor 'MainActor'
public static let melodicMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .M6, .M7], description: "Melodic Minor")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:24:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let melodicMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .M6, .M7], description: "Melodic Minor")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:26:21: warning: static property 'pentatonicMajor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pentatonicMajor = ScaleType(intervals: [.P1, .M2, .M3, .P5, .M6], description: "Pentatonic Major")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:26:21: note: add '@MainActor' to make static property 'pentatonicMajor' part of global actor 'MainActor'
public static let pentatonicMajor = ScaleType(intervals: [.P1, .M2, .M3, .P5, .M6], description: "Pentatonic Major")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:26:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pentatonicMajor = ScaleType(intervals: [.P1, .M2, .M3, .P5, .M6], description: "Pentatonic Major")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:28:21: warning: static property 'pentatonicMinor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pentatonicMinor = ScaleType(intervals: [.P1, .m3, .P4, .P5, .m7], description: "Pentatonic Minor")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:28:21: note: add '@MainActor' to make static property 'pentatonicMinor' part of global actor 'MainActor'
public static let pentatonicMinor = ScaleType(intervals: [.P1, .m3, .P4, .P5, .m7], description: "Pentatonic Minor")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:28:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pentatonicMinor = ScaleType(intervals: [.P1, .m3, .P4, .P5, .m7], description: "Pentatonic Minor")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:30:21: warning: static property 'pentatonicBlues' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pentatonicBlues = ScaleType(intervals: [.P1, .m3, .P4, .d5, .P5, .m7], description: "Pentatonic Blues")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:30:21: note: add '@MainActor' to make static property 'pentatonicBlues' part of global actor 'MainActor'
public static let pentatonicBlues = ScaleType(intervals: [.P1, .m3, .P4, .d5, .P5, .m7], description: "Pentatonic Blues")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:30:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pentatonicBlues = ScaleType(intervals: [.P1, .m3, .P4, .d5, .P5, .m7], description: "Pentatonic Blues")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:32:21: warning: static property 'pentatonicNeutral' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pentatonicNeutral = ScaleType(intervals: [.P1, .M2, .P4, .P5, .m7], description: "Pentatonic Neutral")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:32:21: note: add '@MainActor' to make static property 'pentatonicNeutral' part of global actor 'MainActor'
public static let pentatonicNeutral = ScaleType(intervals: [.P1, .M2, .P4, .P5, .m7], description: "Pentatonic Neutral")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:32:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pentatonicNeutral = ScaleType(intervals: [.P1, .M2, .P4, .P5, .m7], description: "Pentatonic Neutral")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:34:21: warning: static property 'ionian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let ionian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .M7], description: "Ionian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:34:21: note: add '@MainActor' to make static property 'ionian' part of global actor 'MainActor'
public static let ionian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .M7], description: "Ionian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:34:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let ionian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .M7], description: "Ionian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:36:21: warning: static property 'aeolian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let aeolian = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Aeolian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:36:21: note: add '@MainActor' to make static property 'aeolian' part of global actor 'MainActor'
public static let aeolian = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Aeolian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:36:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let aeolian = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Aeolian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:38:21: warning: static property 'dorian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dorian = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .M6, .m7], description: "Dorian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:38:21: note: add '@MainActor' to make static property 'dorian' part of global actor 'MainActor'
public static let dorian = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .M6, .m7], description: "Dorian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:38:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dorian = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .M6, .m7], description: "Dorian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:40:21: warning: static property 'mixolydian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let mixolydian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Mixolydian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:40:21: note: add '@MainActor' to make static property 'mixolydian' part of global actor 'MainActor'
public static let mixolydian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Mixolydian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:40:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let mixolydian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Mixolydian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:42:21: warning: static property 'phrygian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let phrygian = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .m6, .m7], description: "Phrygian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:42:21: note: add '@MainActor' to make static property 'phrygian' part of global actor 'MainActor'
public static let phrygian = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .m6, .m7], description: "Phrygian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:42:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let phrygian = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .m6, .m7], description: "Phrygian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:44:21: warning: static property 'lydian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let lydian = ScaleType(intervals: [.P1, .M2, .M3, .A4, .P5, .M6, .M7], description: "Lydian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:44:21: note: add '@MainActor' to make static property 'lydian' part of global actor 'MainActor'
public static let lydian = ScaleType(intervals: [.P1, .M2, .M3, .A4, .P5, .M6, .M7], description: "Lydian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:44:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let lydian = ScaleType(intervals: [.P1, .M2, .M3, .A4, .P5, .M6, .M7], description: "Lydian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:46:21: warning: static property 'locrian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let locrian = ScaleType(intervals: [.P1, .m2, .m3, .P4, .d5, .m6, .m7], description: "Locrian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:46:21: note: add '@MainActor' to make static property 'locrian' part of global actor 'MainActor'
public static let locrian = ScaleType(intervals: [.P1, .m2, .m3, .P4, .d5, .m6, .m7], description: "Locrian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:46:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let locrian = ScaleType(intervals: [.P1, .m2, .m3, .P4, .d5, .m6, .m7], description: "Locrian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:48:21: warning: static property 'dimHalf' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dimHalf = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Half Diminished")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:48:21: note: add '@MainActor' to make static property 'dimHalf' part of global actor 'MainActor'
public static let dimHalf = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Half Diminished")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:48:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dimHalf = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Half Diminished")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:50:21: warning: static property 'dimWhole' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dimWhole = ScaleType(intervals: [.P1, .M2, .m3, .P4, .d5, .m6, .M6, .M7], description: "Whole Diminished")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:50:21: note: add '@MainActor' to make static property 'dimWhole' part of global actor 'MainActor'
public static let dimWhole = ScaleType(intervals: [.P1, .M2, .m3, .P4, .d5, .m6, .M6, .M7], description: "Whole Diminished")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:50:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dimWhole = ScaleType(intervals: [.P1, .M2, .m3, .P4, .d5, .m6, .M6, .M7], description: "Whole Diminished")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:52:21: warning: static property 'whole' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let whole = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Whole")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:52:21: note: add '@MainActor' to make static property 'whole' part of global actor 'MainActor'
public static let whole = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Whole")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:52:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let whole = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Whole")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:54:21: warning: static property 'augmented' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let augmented = ScaleType(intervals: [.m3, .M3, .P5, .m6, .M7], description: "Augmented")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:54:21: note: add '@MainActor' to make static property 'augmented' part of global actor 'MainActor'
public static let augmented = ScaleType(intervals: [.m3, .M3, .P5, .m6, .M7], description: "Augmented")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:54:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let augmented = ScaleType(intervals: [.m3, .M3, .P5, .m6, .M7], description: "Augmented")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:56:21: warning: static property 'chromatic' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let chromatic = ScaleType(intervals: [.P1, .m2, .M2, .m3, .M3, .P4, .d5, .P5, .m6, .M6, .m7, .M7], description: "Chromatic")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:56:21: note: add '@MainActor' to make static property 'chromatic' part of global actor 'MainActor'
public static let chromatic = ScaleType(intervals: [.P1, .m2, .M2, .m3, .M3, .P4, .d5, .P5, .m6, .M6, .m7, .M7], description: "Chromatic")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:56:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let chromatic = ScaleType(intervals: [.P1, .m2, .M2, .m3, .M3, .P4, .d5, .P5, .m6, .M6, .m7, .M7], description: "Chromatic")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:58:21: warning: static property 'romanianMinor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let romanianMinor = ScaleType(intervals: [.P1, .M2, .m3, .d5, .P5, .M6, .m7], description: "Romanian Minor")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:58:21: note: add '@MainActor' to make static property 'romanianMinor' part of global actor 'MainActor'
public static let romanianMinor = ScaleType(intervals: [.P1, .M2, .m3, .d5, .P5, .M6, .m7], description: "Romanian Minor")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:58:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let romanianMinor = ScaleType(intervals: [.P1, .M2, .m3, .d5, .P5, .M6, .m7], description: "Romanian Minor")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:60:21: warning: static property 'spanishGypsy' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let spanishGypsy = ScaleType(intervals: [.P1, .m2, .M3, .P4, .P5, .m6, .m7], description: "Spanish Gypsy")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:60:21: note: add '@MainActor' to make static property 'spanishGypsy' part of global actor 'MainActor'
public static let spanishGypsy = ScaleType(intervals: [.P1, .m2, .M3, .P4, .P5, .m6, .m7], description: "Spanish Gypsy")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:60:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let spanishGypsy = ScaleType(intervals: [.P1, .m2, .M3, .P4, .P5, .m6, .m7], description: "Spanish Gypsy")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:62:21: warning: static property 'blues' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let blues = ScaleType(intervals: [.P1, .m3, .P4, .d5, .P5, .m7], description: "Blues")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:62:21: note: add '@MainActor' to make static property 'blues' part of global actor 'MainActor'
public static let blues = ScaleType(intervals: [.P1, .m3, .P4, .d5, .P5, .m7], description: "Blues")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:62:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let blues = ScaleType(intervals: [.P1, .m3, .P4, .d5, .P5, .m7], description: "Blues")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:64:21: warning: static property 'diatonic' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let diatonic = ScaleType(intervals: [.P1, .M2, .M3, .P5, .M6], description: "Diatonic")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:64:21: note: add '@MainActor' to make static property 'diatonic' part of global actor 'MainActor'
public static let diatonic = ScaleType(intervals: [.P1, .M2, .M3, .P5, .M6], description: "Diatonic")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:64:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let diatonic = ScaleType(intervals: [.P1, .M2, .M3, .P5, .M6], description: "Diatonic")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:66:21: warning: static property 'doubleHarmonic' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let doubleHarmonic = ScaleType(intervals: [.P1, .m2, .M3, .P4, .P5, .m6, .M7], description: "Double Harmonic")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:66:21: note: add '@MainActor' to make static property 'doubleHarmonic' part of global actor 'MainActor'
public static let doubleHarmonic = ScaleType(intervals: [.P1, .m2, .M3, .P4, .P5, .m6, .M7], description: "Double Harmonic")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:66:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let doubleHarmonic = ScaleType(intervals: [.P1, .m2, .M3, .P4, .P5, .m6, .M7], description: "Double Harmonic")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:68:21: warning: static property 'eightToneSpanish' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let eightToneSpanish = ScaleType(intervals: [.P1, .m2, .m3, .M3, .P4, .d5, .m6, .m7], description: "Eight Tone Spanish")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:68:21: note: add '@MainActor' to make static property 'eightToneSpanish' part of global actor 'MainActor'
public static let eightToneSpanish = ScaleType(intervals: [.P1, .m2, .m3, .M3, .P4, .d5, .m6, .m7], description: "Eight Tone Spanish")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:68:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let eightToneSpanish = ScaleType(intervals: [.P1, .m2, .m3, .M3, .P4, .d5, .m6, .m7], description: "Eight Tone Spanish")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:70:21: warning: static property 'enigmatic' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let enigmatic = ScaleType(intervals: [.P1, .m2, .M3, .d5, .m6, .m7, .M7], description: "Enigmatic")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:70:21: note: add '@MainActor' to make static property 'enigmatic' part of global actor 'MainActor'
public static let enigmatic = ScaleType(intervals: [.P1, .m2, .M3, .d5, .m6, .m7, .M7], description: "Enigmatic")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:70:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let enigmatic = ScaleType(intervals: [.P1, .m2, .M3, .d5, .m6, .m7, .M7], description: "Enigmatic")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:72:21: warning: static property 'leadingWholeTone' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let leadingWholeTone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .M6, .m7], description: "Leading Whole Tone")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:72:21: note: add '@MainActor' to make static property 'leadingWholeTone' part of global actor 'MainActor'
public static let leadingWholeTone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .M6, .m7], description: "Leading Whole Tone")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:72:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let leadingWholeTone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .M6, .m7], description: "Leading Whole Tone")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:74:21: warning: static property 'lydianAugmented' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let lydianAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .M6, .M7], description: "Lydian Augmented")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:74:21: note: add '@MainActor' to make static property 'lydianAugmented' part of global actor 'MainActor'
public static let lydianAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .M6, .M7], description: "Lydian Augmented")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:74:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let lydianAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .M6, .M7], description: "Lydian Augmented")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:76:21: warning: static property 'neopolitanMajor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let neopolitanMajor = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .M6, .M7], description: "Neopolitan Major")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:76:21: note: add '@MainActor' to make static property 'neopolitanMajor' part of global actor 'MainActor'
public static let neopolitanMajor = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .M6, .M7], description: "Neopolitan Major")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:76:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let neopolitanMajor = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .M6, .M7], description: "Neopolitan Major")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:78:21: warning: static property 'neopolitanMinor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let neopolitanMinor = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .m6, .m7], description: "Neopolitan Minor")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:78:21: note: add '@MainActor' to make static property 'neopolitanMinor' part of global actor 'MainActor'
public static let neopolitanMinor = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .m6, .m7], description: "Neopolitan Minor")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:78:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let neopolitanMinor = ScaleType(intervals: [.P1, .m2, .m3, .P4, .P5, .m6, .m7], description: "Neopolitan Minor")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:80:21: warning: static property 'pelog' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pelog = ScaleType(intervals: [.P1, .m2, .m3, .d5, .m7, .M7], description: "Pelog")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:80:21: note: add '@MainActor' to make static property 'pelog' part of global actor 'MainActor'
public static let pelog = ScaleType(intervals: [.P1, .m2, .m3, .d5, .m7, .M7], description: "Pelog")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:80:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pelog = ScaleType(intervals: [.P1, .m2, .m3, .d5, .m7, .M7], description: "Pelog")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:82:21: warning: static property 'prometheus' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let prometheus = ScaleType(intervals: [.P1, .M2, .M3, .d5, .M6, .m7], description: "Prometheus")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:82:21: note: add '@MainActor' to make static property 'prometheus' part of global actor 'MainActor'
public static let prometheus = ScaleType(intervals: [.P1, .M2, .M3, .d5, .M6, .m7], description: "Prometheus")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:82:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let prometheus = ScaleType(intervals: [.P1, .M2, .M3, .d5, .M6, .m7], description: "Prometheus")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:84:21: warning: static property 'prometheusNeopolitan' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let prometheusNeopolitan = ScaleType(intervals: [.P1, .m2, .M3, .d5, .M6, .m7], description: "Prometheus Neopolitan")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:84:21: note: add '@MainActor' to make static property 'prometheusNeopolitan' part of global actor 'MainActor'
public static let prometheusNeopolitan = ScaleType(intervals: [.P1, .m2, .M3, .d5, .M6, .m7], description: "Prometheus Neopolitan")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:84:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let prometheusNeopolitan = ScaleType(intervals: [.P1, .m2, .M3, .d5, .M6, .m7], description: "Prometheus Neopolitan")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:86:21: warning: static property 'sixToneSymmetrical' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sixToneSymmetrical = ScaleType(intervals: [.P1, .m2, .M3, .P4, .m6, .M6], description: "Six Tone Symmetrical")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:86:21: note: add '@MainActor' to make static property 'sixToneSymmetrical' part of global actor 'MainActor'
public static let sixToneSymmetrical = ScaleType(intervals: [.P1, .m2, .M3, .P4, .m6, .M6], description: "Six Tone Symmetrical")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:86:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sixToneSymmetrical = ScaleType(intervals: [.P1, .m2, .M3, .P4, .m6, .M6], description: "Six Tone Symmetrical")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:88:21: warning: static property 'superLocrian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let superLocrian = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Super Locrian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:88:21: note: add '@MainActor' to make static property 'superLocrian' part of global actor 'MainActor'
public static let superLocrian = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Super Locrian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:88:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let superLocrian = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Super Locrian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:90:21: warning: static property 'lydianMinor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let lydianMinor = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .m6, .m7], description: "Lydian Minor")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:90:21: note: add '@MainActor' to make static property 'lydianMinor' part of global actor 'MainActor'
public static let lydianMinor = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .m6, .m7], description: "Lydian Minor")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:90:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let lydianMinor = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .m6, .m7], description: "Lydian Minor")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:92:21: warning: static property 'lydianDiminished' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let lydianDiminished = ScaleType(intervals: [.P1, .M2, .m3, .d5, .P5, .m6, .m7], description: "Lydian Diminished")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:92:21: note: add '@MainActor' to make static property 'lydianDiminished' part of global actor 'MainActor'
public static let lydianDiminished = ScaleType(intervals: [.P1, .M2, .m3, .d5, .P5, .m6, .m7], description: "Lydian Diminished")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:92:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let lydianDiminished = ScaleType(intervals: [.P1, .M2, .m3, .d5, .P5, .m6, .m7], description: "Lydian Diminished")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:94:21: warning: static property 'nineToneScale' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let nineToneScale = ScaleType(intervals: [.P1, .M2, .m3, .M3, .d5, .P5, .m6, .M6, .M7], description: "Nine Tone Scale")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:94:21: note: add '@MainActor' to make static property 'nineToneScale' part of global actor 'MainActor'
public static let nineToneScale = ScaleType(intervals: [.P1, .M2, .m3, .M3, .d5, .P5, .m6, .M6, .M7], description: "Nine Tone Scale")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:94:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let nineToneScale = ScaleType(intervals: [.P1, .M2, .m3, .M3, .d5, .P5, .m6, .M6, .M7], description: "Nine Tone Scale")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:96:21: warning: static property 'auxiliaryDiminished' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let auxiliaryDiminished = ScaleType(intervals: [.P1, .M2, .m3, .P4, .d5, .m6, .M6, .M7], description: "Auxiliary Diminished")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:96:21: note: add '@MainActor' to make static property 'auxiliaryDiminished' part of global actor 'MainActor'
public static let auxiliaryDiminished = ScaleType(intervals: [.P1, .M2, .m3, .P4, .d5, .m6, .M6, .M7], description: "Auxiliary Diminished")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:96:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let auxiliaryDiminished = ScaleType(intervals: [.P1, .M2, .m3, .P4, .d5, .m6, .M6, .M7], description: "Auxiliary Diminished")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:98:21: warning: static property 'auxiliaryAugmented' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let auxiliaryAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Auxiliary Augmented")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:98:21: note: add '@MainActor' to make static property 'auxiliaryAugmented' part of global actor 'MainActor'
public static let auxiliaryAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Auxiliary Augmented")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:98:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let auxiliaryAugmented = ScaleType(intervals: [.P1, .M2, .M3, .d5, .m6, .m7], description: "Auxiliary Augmented")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:100:21: warning: static property 'auxiliaryDimBlues' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let auxiliaryDimBlues = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Auxiliary Diminished Blues")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:100:21: note: add '@MainActor' to make static property 'auxiliaryDimBlues' part of global actor 'MainActor'
public static let auxiliaryDimBlues = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Auxiliary Diminished Blues")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:100:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let auxiliaryDimBlues = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .P5, .M6, .m7], description: "Auxiliary Diminished Blues")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:102:21: warning: static property 'majorLocrian' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let majorLocrian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .d5, .m6, .m7], description: "Major Locrian")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:102:21: note: add '@MainActor' to make static property 'majorLocrian' part of global actor 'MainActor'
public static let majorLocrian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .d5, .m6, .m7], description: "Major Locrian")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:102:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let majorLocrian = ScaleType(intervals: [.P1, .M2, .M3, .P4, .d5, .m6, .m7], description: "Major Locrian")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:104:21: warning: static property 'overtone' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let overtone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .M6, .m7], description: "Overtone")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:104:21: note: add '@MainActor' to make static property 'overtone' part of global actor 'MainActor'
public static let overtone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .M6, .m7], description: "Overtone")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:104:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let overtone = ScaleType(intervals: [.P1, .M2, .M3, .d5, .P5, .M6, .m7], description: "Overtone")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:106:21: warning: static property 'diminishedWholeTone' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let diminishedWholeTone = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Diminished Whole Tone")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:106:21: note: add '@MainActor' to make static property 'diminishedWholeTone' part of global actor 'MainActor'
public static let diminishedWholeTone = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Diminished Whole Tone")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:106:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let diminishedWholeTone = ScaleType(intervals: [.P1, .m2, .m3, .M3, .d5, .m6, .m7], description: "Diminished Whole Tone")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:108:21: warning: static property 'pureMinor' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pureMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Pure Minor")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:108:21: note: add '@MainActor' to make static property 'pureMinor' part of global actor 'MainActor'
public static let pureMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Pure Minor")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:108:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pureMinor = ScaleType(intervals: [.P1, .M2, .m3, .P4, .P5, .m6, .m7], description: "Pure Minor")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:110:21: warning: static property 'dominant7th' is not concurrency-safe because non-'Sendable' type 'ScaleType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dominant7th = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Dominant 7th")
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:16:15: note: consider making struct 'ScaleType' conform to the 'Sendable' protocol
public struct ScaleType: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:110:21: note: add '@MainActor' to make static property 'dominant7th' part of global actor 'MainActor'
public static let dominant7th = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Dominant 7th")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:110:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dominant7th = ScaleType(intervals: [.P1, .M2, .M3, .P4, .P5, .M6, .m7], description: "Dominant 7th")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:310:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Scale.HarmonicField]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: [HarmonicField] = [.triad, .tetrad, .ninth, .eleventh, .thirteenth]
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:297:15: note: consider making enum 'HarmonicField' conform to the 'Sendable' protocol
public enum HarmonicField: Int, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:310:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all: [HarmonicField] = [.triad, .tetrad, .ninth, .eleventh, .thirteenth]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Scale.swift:310:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: [HarmonicField] = [.triad, .tetrad, .ninth, .eleventh, .thirteenth]
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Accidental.swift,\ Chord.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:21: warning: static property 'flat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let flat: Accidental = .flats(amount: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:21: note: add '@MainActor' to make static property 'flat' part of global actor 'MainActor'
public static let flat: Accidental = .flats(amount: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:112:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let flat: Accidental = .flats(amount: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:21: warning: static property 'sharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sharp: Accidental = .sharps(amount: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:21: note: add '@MainActor' to make static property 'sharp' part of global actor 'MainActor'
public static let sharp: Accidental = .sharps(amount: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:114:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sharp: Accidental = .sharps(amount: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:116:21: warning: static property 'doubleFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let doubleFlat: Accidental = .flats(amount: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:116:21: note: add '@MainActor' to make static property 'doubleFlat' part of global actor 'MainActor'
public static let doubleFlat: Accidental = .flats(amount: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:116:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let doubleFlat: Accidental = .flats(amount: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:118:21: warning: static property 'doubleSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
public static let doubleSharp: Accidental = .sharps(amount: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:103:13: note: consider making enum 'Accidental' conform to the 'Sendable' protocol
public enum Accidental: Codable, Equatable, Hashable, RawRepresentable, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:118:21: note: add '@MainActor' to make static property 'doubleSharp' part of global actor 'MainActor'
public static let doubleSharp: Accidental = .sharps(amount: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:118:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let doubleSharp: Accidental = .sharps(amount: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:122:21: warning: static property 'shouldUseDoubleFlatAndDoubleSharpNotation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
^
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:122:21: note: convert 'shouldUseDoubleFlatAndDoubleSharpNotation' to a 'let' constant to make 'Sendable' shared state immutable
public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:122:21: note: add '@MainActor' to make static property 'shouldUseDoubleFlatAndDoubleSharpNotation' part of global actor 'MainActor'
public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Accidental.swift:122:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var shouldUseDoubleFlatAndDoubleSharpNotation = true
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Chord.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Tempo.swift /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MusicTheory/Tempo.swift (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for MusicTheory (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriver\ Compilation\ Requirements MusicTheory normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MusicTheory -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Tempo.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/MusicTheory-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory-Swift.h (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/MusicTheory-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftdoc (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.abi.json (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftsourceinfo (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling NoteValue.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Accidental.swift, Chord.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Interval.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Scale.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling HarmonicFunctions.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling ChordProgression.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling TimeSignature.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Key.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriverJobDiscovery normal arm64 Compiling Pitch.swift (in target 'MusicTheory' from project 'MusicTheory')
SwiftDriver\ Compilation MusicTheory normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MusicTheory -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.o normal (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.o
ExtractAppIntentsMetadata (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name MusicTheory --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.MusicTheory --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/MusicTheory.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/MusicTheory.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MusicTheory.build/Debug/MusicTheory.build/Objects-normal/arm64/MusicTheory.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 10:57:16.516 appintentsmetadataprocessor[718:4049] Starting appintentsmetadataprocessor export
2025-04-27 10:57:16.556 appintentsmetadataprocessor[718:4049] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.o (in target 'MusicTheory' from project 'MusicTheory')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MusicTheory.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:2f1e4221d3920644fc8ed7e3780426a7f4702c78, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:2f1e4221d3920644fc8ed7e3780426a7f4702c78, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:2f1e4221d3920644fc8ed7e3780426a7f4702c78, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:2f1e4221d3920644fc8ed7e3780426a7f4702c78, name:My Mac }
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "MusicTheory",
"name" : "MusicTheory",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "MusicTheory",
"targets" : [
"MusicTheory"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MusicTheoryTests",
"module_type" : "SwiftTarget",
"name" : "MusicTheoryTests",
"path" : "Tests/MusicTheoryTests",
"sources" : [
"MusicTheoryTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"MusicTheory"
],
"type" : "test"
},
{
"c99name" : "MusicTheory",
"module_type" : "SwiftTarget",
"name" : "MusicTheory",
"path" : "Sources/MusicTheory",
"product_memberships" : [
"MusicTheory"
],
"sources" : [
"Accidental.swift",
"Chord.swift",
"ChordProgression.swift",
"HarmonicFunctions.swift",
"Interval.swift",
"Key.swift",
"NoteValue.swift",
"Pitch.swift",
"Scale.swift",
"Tempo.swift",
"TimeSignature.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.