Build Information
Successful build of MusicXML, reference 0.2.3 (1d98bc
), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 14:34:25 UTC.
Swift 6 data race errors: 123
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
32 | public static let eighth = NoteType(.eighth)
33 | public static let sixteenth = NoteType(.sixteenth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:32:23: warning: static property 'eighth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
30 | public static let half = NoteType(.half)
31 | public static let quarter = NoteType(.quarter)
32 | public static let eighth = NoteType(.eighth)
| |- warning: static property 'eighth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'eighth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static let sixteenth = NoteType(.sixteenth)
34 | public static let thirysecond = NoteType(.thirysecond)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:33:23: warning: static property 'sixteenth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
31 | public static let quarter = NoteType(.quarter)
32 | public static let eighth = NoteType(.eighth)
33 | public static let sixteenth = NoteType(.sixteenth)
| |- warning: static property 'sixteenth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sixteenth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | public static let thirysecond = NoteType(.thirysecond)
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:34:23: warning: static property 'thirysecond' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
32 | public static let eighth = NoteType(.eighth)
33 | public static let sixteenth = NoteType(.sixteenth)
34 | public static let thirysecond = NoteType(.thirysecond)
| |- warning: static property 'thirysecond' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'thirysecond' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:35:23: warning: static property 'sixtyfourth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
33 | public static let sixteenth = NoteType(.sixteenth)
34 | public static let thirysecond = NoteType(.thirysecond)
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
| |- warning: static property 'sixtyfourth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sixtyfourth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:36:23: warning: static property 'onehundredtwentyeighth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
34 | public static let thirysecond = NoteType(.thirysecond)
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
| |- warning: static property 'onehundredtwentyeighth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'onehundredtwentyeighth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
38 | public static let fivehundredtwelfth = NoteType(.fivehundredtwelfth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:37:23: warning: static property 'twohundredfiftysixth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
| |- warning: static property 'twohundredfiftysixth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'twohundredfiftysixth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | public static let fivehundredtwelfth = NoteType(.fivehundredtwelfth)
39 | public static let onethousandtwentyfourth = NoteType(.onehundredtwentyeighth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:38:23: warning: static property 'fivehundredtwelfth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
38 | public static let fivehundredtwelfth = NoteType(.fivehundredtwelfth)
| |- warning: static property 'fivehundredtwelfth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fivehundredtwelfth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | public static let onethousandtwentyfourth = NoteType(.onehundredtwentyeighth)
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:39:23: warning: static property 'onethousandtwentyfourth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
38 | public static let fivehundredtwelfth = NoteType(.fivehundredtwelfth)
39 | public static let onethousandtwentyfourth = NoteType(.onehundredtwentyeighth)
| |- warning: static property 'onethousandtwentyfourth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'onethousandtwentyfourth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | }
41 |
[267/363] Compiling MusicXML ArrowDirection.swift
[268/363] Compiling MusicXML ArrowStyle.swift
[269/363] Compiling MusicXML BackwardForward.swift
[270/363] Compiling MusicXML BarStyle.swift
[271/363] Compiling MusicXML BeamLevel.swift
[272/363] Compiling MusicXML BeamValue.swift
[273/363] Compiling MusicXML BeaterValue.swift
[274/363] Compiling MusicXML BreathMarkValue.swift
[275/363] Compiling MusicXML CSSFontSize.swift
[276/363] Compiling MusicXML CancelLocation.swift
[277/363] Compiling MusicXML CircularArrow.swift
[278/363] Compiling MusicXML ClefSign.swift
[279/363] Compiling MusicXML Color.swift
[280/363] Compiling MusicXML CommaSeparatedText.swift
[281/363] Compiling MusicXML DegreeSymbolValue.swift
[282/363] Compiling MusicXML DegreeTypeValue.swift
[283/363] Compiling MusicXML DistanceType.swift
[284/363] Compiling MusicXML Divisions.swift
[285/363] Compiling MusicXML Effect.swift
[286/363] Compiling MusicXML EnclosureShape.swift
[287/363] Compiling MusicXML EndingNumber.swift
[288/363] Compiling MusicXML Fan.swift
[289/363] Compiling MusicXML FermataShape.swift
[290/363] Compiling MusicXML Fifths.swift
[291/363] Compiling MusicXML FontSize.swift
[292/363] Compiling MusicXML FontStyle.swift
[293/363] Compiling MusicXML FontWeight.swift
[294/363] Compiling MusicXML Glass.swift
[295/363] Compiling MusicXML GroupBarlineValue.swift
[296/363] Compiling MusicXML GroupSymbolValue.swift
[297/363] Compiling MusicXML HandbellValue.swift
[298/363] Compiling MusicXML HarmonyType.swift
[299/363] Compiling MusicXML HoleClosedLocation.swift
[300/363] Compiling MusicXML HoleClosedValue.swift
[301/363] Compiling MusicXML SimpleTypesInternalConformance.swift
[302/363] Compiling MusicXML KindValue.swift
[303/363] Compiling MusicXML LeftCenterRight.swift
[304/363] Compiling MusicXML LeftRight.swift
[305/363] Compiling MusicXML LineEnd.swift
[306/363] Compiling MusicXML LineShape.swift
[307/363] Compiling MusicXML LineType.swift
[308/363] Compiling MusicXML LineWidthType.swift
[309/363] Compiling MusicXML MarginType.swift
[310/363] Compiling MusicXML MeasureNumberingValue.swift
[311/363] Compiling MusicXML Membrane.swift
[312/363] Compiling MusicXML Metal.swift
[313/363] Compiling MusicXML Mode.swift
[314/363] Compiling MusicXML MusicXML.swift
[315/363] Compiling MusicXML Mute.swift
[316/363] Compiling MusicXML NonNegativeDecimal.swift
[317/363] Compiling MusicXML NoteSizeType.swift
[318/363] Compiling MusicXML NoteTypeValue.swift
[319/363] Compiling MusicXML NoteheadValue.swift
[320/363] Compiling MusicXML NumberOrNormal.swift
[321/363] Compiling MusicXML OnOff.swift
[322/363] Compiling MusicXML OverUnder.swift
[323/363] Compiling MusicXML Pitched.swift
[324/363] Compiling MusicXML PrincipleVoiceSymbol.swift
[325/363] Compiling MusicXML RightLeftMiddle.swift
[326/363] Compiling MusicXML SemiPitched.swift
[327/363] Compiling MusicXML ShowFrets.swift
[328/363] Compiling MusicXML ShowTuplet.swift
[329/363] Compiling MusicXML StaffType.swift
[330/363] Compiling MusicXML StartNote.swift
[331/363] Compiling MusicXML StartStop.swift
[332/363] Compiling MusicXML StartStopChangeContinue.swift
[333/363] Compiling MusicXML StartStopContinue.swift
[334/363] Compiling MusicXML StartStopDiscontinue.swift
[335/363] Compiling MusicXML StartStopSingle.swift
[336/363] Compiling MusicXML StemValue.swift
[337/363] Compiling MusicXML Step.swift
[338/363] Compiling MusicXML StickLocation.swift
[339/363] Compiling MusicXML StickMaterial.swift
[340/363] Compiling MusicXML StickType.swift
[341/363] Compiling MusicXML Syllabic.swift
[342/363] Compiling MusicXML SymbolSize.swift
[343/363] Compiling MusicXML Tenths.swift
[344/363] Compiling MusicXML TextDirection.swift
[345/363] Compiling MusicXML TimeOnly.swift
[346/363] Compiling MusicXML TimeRelation.swift
[347/363] Compiling MusicXML TimeSeparator.swift
[348/363] Compiling MusicXML TimeSymbol.swift
[349/363] Compiling MusicXML TipDirection.swift
[350/363] Compiling MusicXML TopBottom.swift
[351/363] Compiling MusicXML TrillStep.swift
[352/363] Compiling MusicXML TwoNoteTurn.swift
[353/363] Compiling MusicXML UpDown.swift
[354/363] Compiling MusicXML UpDownStopContinue.swift
[355/363] Compiling MusicXML UprightInverted.swift
[356/363] Compiling MusicXML VAlign.swift
[357/363] Compiling MusicXML VAlignImage.swift
[358/363] Compiling MusicXML WedgeType.swift
[359/363] Compiling MusicXML Winged.swift
[360/363] Compiling MusicXML Wood.swift
[361/363] Compiling MusicXML YesNo.swift
[362/363] Compiling MusicXML YesNoNumber.swift
[363/363] Emitting module MusicXML
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:53:23: 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
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
51 | // MARK: - Type Properties
52 |
53 | public static let sharp = Accidental(.sharp)
| |- 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
| |- note: annotate 'sharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | public static let natural = Accidental(.natural)
55 | public static let flat = Accidental(.flat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:54:23: warning: static property 'natural' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
52 |
53 | public static let sharp = Accidental(.sharp)
54 | public static let natural = Accidental(.natural)
| |- warning: static property 'natural' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'natural' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | public static let flat = Accidental(.flat)
56 | public static let doubleSharp = Accidental(.doubleSharp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:55:23: 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
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
53 | public static let sharp = Accidental(.sharp)
54 | public static let natural = Accidental(.natural)
55 | public static let flat = Accidental(.flat)
| |- 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
| |- note: annotate 'flat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 | public static let doubleSharp = Accidental(.doubleSharp)
57 | public static let sharpSharp = Accidental(.sharpSharp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:56:23: 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
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
54 | public static let natural = Accidental(.natural)
55 | public static let flat = Accidental(.flat)
56 | public static let doubleSharp = Accidental(.doubleSharp)
| |- 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
| |- note: annotate 'doubleSharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | public static let sharpSharp = Accidental(.sharpSharp)
58 | public static let flatFlat = Accidental(.flatFlat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:57:23: warning: static property 'sharpSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
55 | public static let flat = Accidental(.flat)
56 | public static let doubleSharp = Accidental(.doubleSharp)
57 | public static let sharpSharp = Accidental(.sharpSharp)
| |- warning: static property 'sharpSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sharpSharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 | public static let flatFlat = Accidental(.flatFlat)
59 | public static let doubleFlat = Accidental(.doubleFlat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:58:23: warning: static property 'flatFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
56 | public static let doubleSharp = Accidental(.doubleSharp)
57 | public static let sharpSharp = Accidental(.sharpSharp)
58 | public static let flatFlat = Accidental(.flatFlat)
| |- warning: static property 'flatFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flatFlat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 | public static let doubleFlat = Accidental(.doubleFlat)
60 | public static let naturalSharp = Accidental(.naturalSharp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:59:23: 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
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
57 | public static let sharpSharp = Accidental(.sharpSharp)
58 | public static let flatFlat = Accidental(.flatFlat)
59 | public static let doubleFlat = Accidental(.doubleFlat)
| |- 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
| |- note: annotate 'doubleFlat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 | public static let naturalSharp = Accidental(.naturalSharp)
61 | public static let naturalFlat = Accidental(.naturalFlat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:60:23: warning: static property 'naturalSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
58 | public static let flatFlat = Accidental(.flatFlat)
59 | public static let doubleFlat = Accidental(.doubleFlat)
60 | public static let naturalSharp = Accidental(.naturalSharp)
| |- warning: static property 'naturalSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'naturalSharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | public static let naturalFlat = Accidental(.naturalFlat)
62 | public static let quarterFlat = Accidental(.quarterFlat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:61:23: warning: static property 'naturalFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
59 | public static let doubleFlat = Accidental(.doubleFlat)
60 | public static let naturalSharp = Accidental(.naturalSharp)
61 | public static let naturalFlat = Accidental(.naturalFlat)
| |- warning: static property 'naturalFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'naturalFlat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | public static let quarterFlat = Accidental(.quarterFlat)
63 | public static let quarterSharp = Accidental(.quarterSharp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:62:23: warning: static property 'quarterFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
60 | public static let naturalSharp = Accidental(.naturalSharp)
61 | public static let naturalFlat = Accidental(.naturalFlat)
62 | public static let quarterFlat = Accidental(.quarterFlat)
| |- warning: static property 'quarterFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'quarterFlat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | public static let quarterSharp = Accidental(.quarterSharp)
64 | public static let threeQuartersFlat = Accidental(.threeQuartersFlat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:63:23: warning: static property 'quarterSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
61 | public static let naturalFlat = Accidental(.naturalFlat)
62 | public static let quarterFlat = Accidental(.quarterFlat)
63 | public static let quarterSharp = Accidental(.quarterSharp)
| |- warning: static property 'quarterSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'quarterSharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 | public static let threeQuartersFlat = Accidental(.threeQuartersFlat)
65 | public static let threeQuartersSharp = Accidental(.threeQuartersSharp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:64:23: warning: static property 'threeQuartersFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
62 | public static let quarterFlat = Accidental(.quarterFlat)
63 | public static let quarterSharp = Accidental(.quarterSharp)
64 | public static let threeQuartersFlat = Accidental(.threeQuartersFlat)
| |- warning: static property 'threeQuartersFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'threeQuartersFlat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | public static let threeQuartersSharp = Accidental(.threeQuartersSharp)
66 | public static let sharpDown = Accidental(.sharpDown)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:65:23: warning: static property 'threeQuartersSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
63 | public static let quarterSharp = Accidental(.quarterSharp)
64 | public static let threeQuartersFlat = Accidental(.threeQuartersFlat)
65 | public static let threeQuartersSharp = Accidental(.threeQuartersSharp)
| |- warning: static property 'threeQuartersSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'threeQuartersSharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 | public static let sharpDown = Accidental(.sharpDown)
67 | public static let sharpUp = Accidental(.sharpUp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:66:23: warning: static property 'sharpDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
64 | public static let threeQuartersFlat = Accidental(.threeQuartersFlat)
65 | public static let threeQuartersSharp = Accidental(.threeQuartersSharp)
66 | public static let sharpDown = Accidental(.sharpDown)
| |- warning: static property 'sharpDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sharpDown' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | public static let sharpUp = Accidental(.sharpUp)
68 | public static let naturalDown = Accidental(.naturalDown)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:67:23: warning: static property 'sharpUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
65 | public static let threeQuartersSharp = Accidental(.threeQuartersSharp)
66 | public static let sharpDown = Accidental(.sharpDown)
67 | public static let sharpUp = Accidental(.sharpUp)
| |- warning: static property 'sharpUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sharpUp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | public static let naturalDown = Accidental(.naturalDown)
69 | public static let naturalUp = Accidental(.naturalUp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:68:23: warning: static property 'naturalDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
66 | public static let sharpDown = Accidental(.sharpDown)
67 | public static let sharpUp = Accidental(.sharpUp)
68 | public static let naturalDown = Accidental(.naturalDown)
| |- warning: static property 'naturalDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'naturalDown' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public static let naturalUp = Accidental(.naturalUp)
70 | public static let flatDown = Accidental(.flatDown)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:69:23: warning: static property 'naturalUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
67 | public static let sharpUp = Accidental(.sharpUp)
68 | public static let naturalDown = Accidental(.naturalDown)
69 | public static let naturalUp = Accidental(.naturalUp)
| |- warning: static property 'naturalUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'naturalUp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let flatDown = Accidental(.flatDown)
71 | public static let flatUp = Accidental(.flatUp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:70:23: warning: static property 'flatDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
68 | public static let naturalDown = Accidental(.naturalDown)
69 | public static let naturalUp = Accidental(.naturalUp)
70 | public static let flatDown = Accidental(.flatDown)
| |- warning: static property 'flatDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flatDown' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let flatUp = Accidental(.flatUp)
72 | public static let doubleSharpDown = Accidental(.doubleSharpDown)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:71:23: warning: static property 'flatUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
69 | public static let naturalUp = Accidental(.naturalUp)
70 | public static let flatDown = Accidental(.flatDown)
71 | public static let flatUp = Accidental(.flatUp)
| |- warning: static property 'flatUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flatUp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let doubleSharpDown = Accidental(.doubleSharpDown)
73 | public static let doubleSharpUp = Accidental(.doubleSharpUp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:72:23: warning: static property 'doubleSharpDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
70 | public static let flatDown = Accidental(.flatDown)
71 | public static let flatUp = Accidental(.flatUp)
72 | public static let doubleSharpDown = Accidental(.doubleSharpDown)
| |- warning: static property 'doubleSharpDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'doubleSharpDown' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let doubleSharpUp = Accidental(.doubleSharpUp)
74 | public static let flatFlatDown = Accidental(.flatFlatDown)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:73:23: warning: static property 'doubleSharpUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
71 | public static let flatUp = Accidental(.flatUp)
72 | public static let doubleSharpDown = Accidental(.doubleSharpDown)
73 | public static let doubleSharpUp = Accidental(.doubleSharpUp)
| |- warning: static property 'doubleSharpUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'doubleSharpUp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let flatFlatDown = Accidental(.flatFlatDown)
75 | public static let flatFlatUp = Accidental(.flatFlatUp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:74:23: warning: static property 'flatFlatDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
72 | public static let doubleSharpDown = Accidental(.doubleSharpDown)
73 | public static let doubleSharpUp = Accidental(.doubleSharpUp)
74 | public static let flatFlatDown = Accidental(.flatFlatDown)
| |- warning: static property 'flatFlatDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flatFlatDown' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let flatFlatUp = Accidental(.flatFlatUp)
76 | public static let arrowDown = Accidental(.arrowDown)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:75:23: warning: static property 'flatFlatUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
73 | public static let doubleSharpUp = Accidental(.doubleSharpUp)
74 | public static let flatFlatDown = Accidental(.flatFlatDown)
75 | public static let flatFlatUp = Accidental(.flatFlatUp)
| |- warning: static property 'flatFlatUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flatFlatUp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let arrowDown = Accidental(.arrowDown)
77 | public static let arrowUp = Accidental(.arrowUp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:76:23: warning: static property 'arrowDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
74 | public static let flatFlatDown = Accidental(.flatFlatDown)
75 | public static let flatFlatUp = Accidental(.flatFlatUp)
76 | public static let arrowDown = Accidental(.arrowDown)
| |- warning: static property 'arrowDown' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'arrowDown' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let arrowUp = Accidental(.arrowUp)
78 | public static let tripleSharp = Accidental(.tripleSharp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:77:23: warning: static property 'arrowUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
75 | public static let flatFlatUp = Accidental(.flatFlatUp)
76 | public static let arrowDown = Accidental(.arrowDown)
77 | public static let arrowUp = Accidental(.arrowUp)
| |- warning: static property 'arrowUp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'arrowUp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | public static let tripleSharp = Accidental(.tripleSharp)
79 | public static let tripleFlat = Accidental(.tripleFlat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:78:23: warning: static property 'tripleSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
76 | public static let arrowDown = Accidental(.arrowDown)
77 | public static let arrowUp = Accidental(.arrowUp)
78 | public static let tripleSharp = Accidental(.tripleSharp)
| |- warning: static property 'tripleSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'tripleSharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | public static let tripleFlat = Accidental(.tripleFlat)
80 | public static let slashQuarterSharp = Accidental(.slashQuarterSharp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:79:23: warning: static property 'tripleFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
77 | public static let arrowUp = Accidental(.arrowUp)
78 | public static let tripleSharp = Accidental(.tripleSharp)
79 | public static let tripleFlat = Accidental(.tripleFlat)
| |- warning: static property 'tripleFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'tripleFlat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public static let slashQuarterSharp = Accidental(.slashQuarterSharp)
81 | public static let slashSharp = Accidental(.slashSharp)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:80:23: warning: static property 'slashQuarterSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
78 | public static let tripleSharp = Accidental(.tripleSharp)
79 | public static let tripleFlat = Accidental(.tripleFlat)
80 | public static let slashQuarterSharp = Accidental(.slashQuarterSharp)
| |- warning: static property 'slashQuarterSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'slashQuarterSharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | public static let slashSharp = Accidental(.slashSharp)
82 | public static let slashFlat = Accidental(.slashFlat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:81:23: warning: static property 'slashSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
79 | public static let tripleFlat = Accidental(.tripleFlat)
80 | public static let slashQuarterSharp = Accidental(.slashQuarterSharp)
81 | public static let slashSharp = Accidental(.slashSharp)
| |- warning: static property 'slashSharp' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'slashSharp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | public static let slashFlat = Accidental(.slashFlat)
83 | public static let doubleSlashFlat = Accidental(.doubleSlashFlat)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:82:23: warning: static property 'slashFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
80 | public static let slashQuarterSharp = Accidental(.slashQuarterSharp)
81 | public static let slashSharp = Accidental(.slashSharp)
82 | public static let slashFlat = Accidental(.slashFlat)
| |- warning: static property 'slashFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'slashFlat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | public static let doubleSlashFlat = Accidental(.doubleSlashFlat)
84 | public static let sharp1 = Accidental(.sharp1)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:83:23: warning: static property 'doubleSlashFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
81 | public static let slashSharp = Accidental(.slashSharp)
82 | public static let slashFlat = Accidental(.slashFlat)
83 | public static let doubleSlashFlat = Accidental(.doubleSlashFlat)
| |- warning: static property 'doubleSlashFlat' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'doubleSlashFlat' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | public static let sharp1 = Accidental(.sharp1)
85 | public static let sharp2 = Accidental(.sharp2)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:84:23: warning: static property 'sharp1' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
82 | public static let slashFlat = Accidental(.slashFlat)
83 | public static let doubleSlashFlat = Accidental(.doubleSlashFlat)
84 | public static let sharp1 = Accidental(.sharp1)
| |- warning: static property 'sharp1' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sharp1' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 | public static let sharp2 = Accidental(.sharp2)
86 | public static let sharp3 = Accidental(.sharp3)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:85:23: warning: static property 'sharp2' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
83 | public static let doubleSlashFlat = Accidental(.doubleSlashFlat)
84 | public static let sharp1 = Accidental(.sharp1)
85 | public static let sharp2 = Accidental(.sharp2)
| |- warning: static property 'sharp2' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sharp2' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
86 | public static let sharp3 = Accidental(.sharp3)
87 | public static let sharp5 = Accidental(.sharp5)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:86:23: warning: static property 'sharp3' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
84 | public static let sharp1 = Accidental(.sharp1)
85 | public static let sharp2 = Accidental(.sharp2)
86 | public static let sharp3 = Accidental(.sharp3)
| |- warning: static property 'sharp3' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sharp3' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public static let sharp5 = Accidental(.sharp5)
88 | public static let flat1 = Accidental(.flat1)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:87:23: warning: static property 'sharp5' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
85 | public static let sharp2 = Accidental(.sharp2)
86 | public static let sharp3 = Accidental(.sharp3)
87 | public static let sharp5 = Accidental(.sharp5)
| |- warning: static property 'sharp5' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sharp5' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public static let flat1 = Accidental(.flat1)
89 | public static let flat2 = Accidental(.flat2)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:88:23: warning: static property 'flat1' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
86 | public static let sharp3 = Accidental(.sharp3)
87 | public static let sharp5 = Accidental(.sharp5)
88 | public static let flat1 = Accidental(.flat1)
| |- warning: static property 'flat1' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flat1' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | public static let flat2 = Accidental(.flat2)
90 | public static let flat3 = Accidental(.flat3)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:89:23: warning: static property 'flat2' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
87 | public static let sharp5 = Accidental(.sharp5)
88 | public static let flat1 = Accidental(.flat1)
89 | public static let flat2 = Accidental(.flat2)
| |- warning: static property 'flat2' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flat2' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
90 | public static let flat3 = Accidental(.flat3)
91 | public static let flat4 = Accidental(.flat4)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:90:23: warning: static property 'flat3' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
88 | public static let flat1 = Accidental(.flat1)
89 | public static let flat2 = Accidental(.flat2)
90 | public static let flat3 = Accidental(.flat3)
| |- warning: static property 'flat3' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flat3' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 | public static let flat4 = Accidental(.flat4)
92 | public static let sori = Accidental(.sori)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:91:23: warning: static property 'flat4' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
89 | public static let flat2 = Accidental(.flat2)
90 | public static let flat3 = Accidental(.flat3)
91 | public static let flat4 = Accidental(.flat4)
| |- warning: static property 'flat4' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flat4' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | public static let sori = Accidental(.sori)
93 | public static let koron = Accidental(.koron)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:92:23: warning: static property 'sori' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
90 | public static let flat3 = Accidental(.flat3)
91 | public static let flat4 = Accidental(.flat4)
92 | public static let sori = Accidental(.sori)
| |- warning: static property 'sori' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sori' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
93 | public static let koron = Accidental(.koron)
94 | public static let other = Accidental(.other)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:93:23: warning: static property 'koron' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
91 | public static let flat4 = Accidental(.flat4)
92 | public static let sori = Accidental(.sori)
93 | public static let koron = Accidental(.koron)
| |- warning: static property 'koron' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'koron' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | public static let other = Accidental(.other)
95 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Accidental.swift:94:23: warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// graphic display such as parentheses, brackets, and size are controlled by the level-display
11 | /// attribute group.
12 | public struct Accidental {
| `- note: consider making struct 'Accidental' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
92 | public static let sori = Accidental(.sori)
93 | public static let koron = Accidental(.koron)
94 | public static let other = Accidental(.other)
| |- warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'Accidental' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'other' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 | }
96 |
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:22:23: warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
20 | // MARK: - Type Properties
21 |
22 | public static let regular = BarStyleColor(.regular)
| |- warning: static property 'regular' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'regular' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | public static let dotted = BarStyleColor(.dotted)
24 | public static let dashed = BarStyleColor(.dashed)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:23:23: warning: static property 'dotted' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
21 |
22 | public static let regular = BarStyleColor(.regular)
23 | public static let dotted = BarStyleColor(.dotted)
| |- warning: static property 'dotted' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dotted' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static let dashed = BarStyleColor(.dashed)
25 | public static let heavy = BarStyleColor(.heavy)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:24:23: warning: static property 'dashed' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
22 | public static let regular = BarStyleColor(.regular)
23 | public static let dotted = BarStyleColor(.dotted)
24 | public static let dashed = BarStyleColor(.dashed)
| |- warning: static property 'dashed' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dashed' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | public static let heavy = BarStyleColor(.heavy)
26 | public static let lightLight = BarStyleColor(.lightLight)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:25:23: warning: static property 'heavy' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
23 | public static let dotted = BarStyleColor(.dotted)
24 | public static let dashed = BarStyleColor(.dashed)
25 | public static let heavy = BarStyleColor(.heavy)
| |- warning: static property 'heavy' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'heavy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | public static let lightLight = BarStyleColor(.lightLight)
27 | public static let lightHeavy = BarStyleColor(.lightHeavy)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:26:23: warning: static property 'lightLight' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
24 | public static let dashed = BarStyleColor(.dashed)
25 | public static let heavy = BarStyleColor(.heavy)
26 | public static let lightLight = BarStyleColor(.lightLight)
| |- warning: static property 'lightLight' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lightLight' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | public static let lightHeavy = BarStyleColor(.lightHeavy)
28 | public static let heavyLight = BarStyleColor(.heavyLight)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:27:23: warning: static property 'lightHeavy' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
25 | public static let heavy = BarStyleColor(.heavy)
26 | public static let lightLight = BarStyleColor(.lightLight)
27 | public static let lightHeavy = BarStyleColor(.lightHeavy)
| |- warning: static property 'lightHeavy' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lightHeavy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | public static let heavyLight = BarStyleColor(.heavyLight)
29 | public static let heavyHeavy = BarStyleColor(.heavyHeavy)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:28:23: warning: static property 'heavyLight' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
26 | public static let lightLight = BarStyleColor(.lightLight)
27 | public static let lightHeavy = BarStyleColor(.lightHeavy)
28 | public static let heavyLight = BarStyleColor(.heavyLight)
| |- warning: static property 'heavyLight' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'heavyLight' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | public static let heavyHeavy = BarStyleColor(.heavyHeavy)
30 | public static let tick = BarStyleColor(.tick)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:29:23: warning: static property 'heavyHeavy' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
27 | public static let lightHeavy = BarStyleColor(.lightHeavy)
28 | public static let heavyLight = BarStyleColor(.heavyLight)
29 | public static let heavyHeavy = BarStyleColor(.heavyHeavy)
| |- warning: static property 'heavyHeavy' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'heavyHeavy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static let tick = BarStyleColor(.tick)
31 | public static let short = BarStyleColor(.short)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:30:23: warning: static property 'tick' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
28 | public static let heavyLight = BarStyleColor(.heavyLight)
29 | public static let heavyHeavy = BarStyleColor(.heavyHeavy)
30 | public static let tick = BarStyleColor(.tick)
| |- warning: static property 'tick' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'tick' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | public static let short = BarStyleColor(.short)
32 | public static let none = BarStyleColor(.none)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:31:23: warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
29 | public static let heavyHeavy = BarStyleColor(.heavyHeavy)
30 | public static let tick = BarStyleColor(.tick)
31 | public static let short = BarStyleColor(.short)
| |- warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'short' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let none = BarStyleColor(.none)
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BarStyleColor.swift:32:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The bar-style-color type contains barline style and color information.
9 | public struct BarStyleColor {
| `- note: consider making struct 'BarStyleColor' conform to the 'Sendable' protocol
10 | public var value: BarStyle
11 | public var color: Color?
:
30 | public static let tick = BarStyleColor(.tick)
31 | public static let short = BarStyleColor(.short)
32 | public static let none = BarStyleColor(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BarStyleColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BassStep.swift:29:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// information. In that case, the print-object attribute of the bass-alter element can be set to
11 | /// no.
12 | public struct BassStep {
| `- note: consider making struct 'BassStep' conform to the 'Sendable' protocol
13 | public let value: Step
14 | /// The text attribute indicates how the bass should appear in a score if not using the element
:
27 | // MARK: - Type Properties
28 |
29 | public static let a = BassStep(.a)
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static let b = BassStep(.b)
31 | public static let c = BassStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BassStep.swift:30:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// information. In that case, the print-object attribute of the bass-alter element can be set to
11 | /// no.
12 | public struct BassStep {
| `- note: consider making struct 'BassStep' conform to the 'Sendable' protocol
13 | public let value: Step
14 | /// The text attribute indicates how the bass should appear in a score if not using the element
:
28 |
29 | public static let a = BassStep(.a)
30 | public static let b = BassStep(.b)
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | public static let c = BassStep(.c)
32 | public static let d = BassStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BassStep.swift:31:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// information. In that case, the print-object attribute of the bass-alter element can be set to
11 | /// no.
12 | public struct BassStep {
| `- note: consider making struct 'BassStep' conform to the 'Sendable' protocol
13 | public let value: Step
14 | /// The text attribute indicates how the bass should appear in a score if not using the element
:
29 | public static let a = BassStep(.a)
30 | public static let b = BassStep(.b)
31 | public static let c = BassStep(.c)
| |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let d = BassStep(.d)
33 | public static let e = BassStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BassStep.swift:32:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// information. In that case, the print-object attribute of the bass-alter element can be set to
11 | /// no.
12 | public struct BassStep {
| `- note: consider making struct 'BassStep' conform to the 'Sendable' protocol
13 | public let value: Step
14 | /// The text attribute indicates how the bass should appear in a score if not using the element
:
30 | public static let b = BassStep(.b)
31 | public static let c = BassStep(.c)
32 | public static let d = BassStep(.d)
| |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static let e = BassStep(.e)
34 | public static let f = BassStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BassStep.swift:33:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// information. In that case, the print-object attribute of the bass-alter element can be set to
11 | /// no.
12 | public struct BassStep {
| `- note: consider making struct 'BassStep' conform to the 'Sendable' protocol
13 | public let value: Step
14 | /// The text attribute indicates how the bass should appear in a score if not using the element
:
31 | public static let c = BassStep(.c)
32 | public static let d = BassStep(.d)
33 | public static let e = BassStep(.e)
| |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | public static let f = BassStep(.f)
35 | public static let g = BassStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BassStep.swift:34:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// information. In that case, the print-object attribute of the bass-alter element can be set to
11 | /// no.
12 | public struct BassStep {
| `- note: consider making struct 'BassStep' conform to the 'Sendable' protocol
13 | public let value: Step
14 | /// The text attribute indicates how the bass should appear in a score if not using the element
:
32 | public static let d = BassStep(.d)
33 | public static let e = BassStep(.e)
34 | public static let f = BassStep(.f)
| |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let g = BassStep(.g)
36 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/BassStep.swift:35:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// information. In that case, the print-object attribute of the bass-alter element can be set to
11 | /// no.
12 | public struct BassStep {
| `- note: consider making struct 'BassStep' conform to the 'Sendable' protocol
13 | public let value: Step
14 | /// The text attribute indicates how the bass should appear in a score if not using the element
:
33 | public static let e = BassStep(.e)
34 | public static let f = BassStep(.f)
35 | public static let g = BassStep(.g)
| |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'BassStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | }
37 |
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/DegreeType.swift:43:23: warning: static property 'add' is not concurrency-safe because non-'Sendable' type 'DegreeType' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// interpretation of the value of the degree-alter element. The text attribute specifies how the
11 | /// type of the degree should be displayed in a score.
12 | public struct DegreeType {
| `- note: consider making struct 'DegreeType' conform to the 'Sendable' protocol
13 | // MARK: - Instance Propertie
14 |
:
41 | // MARK: - Type Properties
42 |
43 | public static let add = DegreeType(.add)
| |- warning: static property 'add' is not concurrency-safe because non-'Sendable' type 'DegreeType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'add' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static let alter = DegreeType(.alter)
45 | public static let subtract = DegreeType(.subtract)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/DegreeType.swift:44:23: warning: static property 'alter' is not concurrency-safe because non-'Sendable' type 'DegreeType' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// interpretation of the value of the degree-alter element. The text attribute specifies how the
11 | /// type of the degree should be displayed in a score.
12 | public struct DegreeType {
| `- note: consider making struct 'DegreeType' conform to the 'Sendable' protocol
13 | // MARK: - Instance Propertie
14 |
:
42 |
43 | public static let add = DegreeType(.add)
44 | public static let alter = DegreeType(.alter)
| |- warning: static property 'alter' is not concurrency-safe because non-'Sendable' type 'DegreeType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'alter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public static let subtract = DegreeType(.subtract)
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/DegreeType.swift:45:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'DegreeType' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// interpretation of the value of the degree-alter element. The text attribute specifies how the
11 | /// type of the degree should be displayed in a score.
12 | public struct DegreeType {
| `- note: consider making struct 'DegreeType' conform to the 'Sendable' protocol
13 | // MARK: - Instance Propertie
14 |
:
43 | public static let add = DegreeType(.add)
44 | public static let alter = DegreeType(.alter)
45 | public static let subtract = DegreeType(.subtract)
| |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'DegreeType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'subtract' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:59:23: warning: static property 'major' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
57 | // MARK: - Type Properties
58 |
59 | public static let major = Kind(.major)
| |- warning: static property 'major' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'major' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 | public static let minor = Kind(.minor)
61 | public static let augmented = Kind(.augmented)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:60:23: warning: static property 'minor' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
58 |
59 | public static let major = Kind(.major)
60 | public static let minor = Kind(.minor)
| |- warning: static property 'minor' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'minor' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | public static let augmented = Kind(.augmented)
62 | public static let diminished = Kind(.diminished)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:61:23: warning: static property 'augmented' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
59 | public static let major = Kind(.major)
60 | public static let minor = Kind(.minor)
61 | public static let augmented = Kind(.augmented)
| |- warning: static property 'augmented' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'augmented' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | public static let diminished = Kind(.diminished)
63 | public static let dominant = Kind(.dominant)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:62:23: warning: static property 'diminished' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
60 | public static let minor = Kind(.minor)
61 | public static let augmented = Kind(.augmented)
62 | public static let diminished = Kind(.diminished)
| |- warning: static property 'diminished' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'diminished' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | public static let dominant = Kind(.dominant)
64 | public static let majorSeventh = Kind(.majorSeventh)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:63:23: warning: static property 'dominant' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
61 | public static let augmented = Kind(.augmented)
62 | public static let diminished = Kind(.diminished)
63 | public static let dominant = Kind(.dominant)
| |- warning: static property 'dominant' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dominant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 | public static let majorSeventh = Kind(.majorSeventh)
65 | public static let minorSeventh = Kind(.minorSeventh)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:64:23: warning: static property 'majorSeventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
62 | public static let diminished = Kind(.diminished)
63 | public static let dominant = Kind(.dominant)
64 | public static let majorSeventh = Kind(.majorSeventh)
| |- warning: static property 'majorSeventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'majorSeventh' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | public static let minorSeventh = Kind(.minorSeventh)
66 | public static let diminishedSeventh = Kind(.diminishedSeventh)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:65:23: warning: static property 'minorSeventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
63 | public static let dominant = Kind(.dominant)
64 | public static let majorSeventh = Kind(.majorSeventh)
65 | public static let minorSeventh = Kind(.minorSeventh)
| |- warning: static property 'minorSeventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'minorSeventh' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 | public static let diminishedSeventh = Kind(.diminishedSeventh)
67 | public static let augmentedSeventh = Kind(.augmentedSeventh)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:66:23: warning: static property 'diminishedSeventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
64 | public static let majorSeventh = Kind(.majorSeventh)
65 | public static let minorSeventh = Kind(.minorSeventh)
66 | public static let diminishedSeventh = Kind(.diminishedSeventh)
| |- warning: static property 'diminishedSeventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'diminishedSeventh' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | public static let augmentedSeventh = Kind(.augmentedSeventh)
68 | public static let halfDiminished = Kind(.halfDiminished)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:67:23: warning: static property 'augmentedSeventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
65 | public static let minorSeventh = Kind(.minorSeventh)
66 | public static let diminishedSeventh = Kind(.diminishedSeventh)
67 | public static let augmentedSeventh = Kind(.augmentedSeventh)
| |- warning: static property 'augmentedSeventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'augmentedSeventh' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | public static let halfDiminished = Kind(.halfDiminished)
69 | public static let majorMinor = Kind(.majorMinor)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:68:23: warning: static property 'halfDiminished' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
66 | public static let diminishedSeventh = Kind(.diminishedSeventh)
67 | public static let augmentedSeventh = Kind(.augmentedSeventh)
68 | public static let halfDiminished = Kind(.halfDiminished)
| |- warning: static property 'halfDiminished' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'halfDiminished' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public static let majorMinor = Kind(.majorMinor)
70 | public static let majorSixth = Kind(.majorSixth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:69:23: warning: static property 'majorMinor' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
67 | public static let augmentedSeventh = Kind(.augmentedSeventh)
68 | public static let halfDiminished = Kind(.halfDiminished)
69 | public static let majorMinor = Kind(.majorMinor)
| |- warning: static property 'majorMinor' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'majorMinor' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let majorSixth = Kind(.majorSixth)
71 | public static let minorSixth = Kind(.minorSixth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:70:23: warning: static property 'majorSixth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
68 | public static let halfDiminished = Kind(.halfDiminished)
69 | public static let majorMinor = Kind(.majorMinor)
70 | public static let majorSixth = Kind(.majorSixth)
| |- warning: static property 'majorSixth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'majorSixth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let minorSixth = Kind(.minorSixth)
72 | public static let dominantNinth = Kind(.dominantNinth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:71:23: warning: static property 'minorSixth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
69 | public static let majorMinor = Kind(.majorMinor)
70 | public static let majorSixth = Kind(.majorSixth)
71 | public static let minorSixth = Kind(.minorSixth)
| |- warning: static property 'minorSixth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'minorSixth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let dominantNinth = Kind(.dominantNinth)
73 | public static let majorNinth = Kind(.majorNinth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:72:23: warning: static property 'dominantNinth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
70 | public static let majorSixth = Kind(.majorSixth)
71 | public static let minorSixth = Kind(.minorSixth)
72 | public static let dominantNinth = Kind(.dominantNinth)
| |- warning: static property 'dominantNinth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dominantNinth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let majorNinth = Kind(.majorNinth)
74 | public static let minorNinth = Kind(.minorNinth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:73:23: warning: static property 'majorNinth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
71 | public static let minorSixth = Kind(.minorSixth)
72 | public static let dominantNinth = Kind(.dominantNinth)
73 | public static let majorNinth = Kind(.majorNinth)
| |- warning: static property 'majorNinth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'majorNinth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let minorNinth = Kind(.minorNinth)
75 | public static let dominantEleventh = Kind(.dominantEleventh)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:74:23: warning: static property 'minorNinth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
72 | public static let dominantNinth = Kind(.dominantNinth)
73 | public static let majorNinth = Kind(.majorNinth)
74 | public static let minorNinth = Kind(.minorNinth)
| |- warning: static property 'minorNinth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'minorNinth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let dominantEleventh = Kind(.dominantEleventh)
76 | public static let majorEleventh = Kind(.majorEleventh)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:75:23: warning: static property 'dominantEleventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
73 | public static let majorNinth = Kind(.majorNinth)
74 | public static let minorNinth = Kind(.minorNinth)
75 | public static let dominantEleventh = Kind(.dominantEleventh)
| |- warning: static property 'dominantEleventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dominantEleventh' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let majorEleventh = Kind(.majorEleventh)
77 | public static let minorEleventh = Kind(.minorEleventh)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:76:23: warning: static property 'majorEleventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
74 | public static let minorNinth = Kind(.minorNinth)
75 | public static let dominantEleventh = Kind(.dominantEleventh)
76 | public static let majorEleventh = Kind(.majorEleventh)
| |- warning: static property 'majorEleventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'majorEleventh' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let minorEleventh = Kind(.minorEleventh)
78 | public static let dominantThirteenth = Kind(.dominantThirteenth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:77:23: warning: static property 'minorEleventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
75 | public static let dominantEleventh = Kind(.dominantEleventh)
76 | public static let majorEleventh = Kind(.majorEleventh)
77 | public static let minorEleventh = Kind(.minorEleventh)
| |- warning: static property 'minorEleventh' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'minorEleventh' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | public static let dominantThirteenth = Kind(.dominantThirteenth)
79 | public static let majorThirteenth = Kind(.majorThirteenth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:78:23: warning: static property 'dominantThirteenth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
76 | public static let majorEleventh = Kind(.majorEleventh)
77 | public static let minorEleventh = Kind(.minorEleventh)
78 | public static let dominantThirteenth = Kind(.dominantThirteenth)
| |- warning: static property 'dominantThirteenth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dominantThirteenth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | public static let majorThirteenth = Kind(.majorThirteenth)
80 | public static let minorThirteenth = Kind(.minorThirteenth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:79:23: warning: static property 'majorThirteenth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
77 | public static let minorEleventh = Kind(.minorEleventh)
78 | public static let dominantThirteenth = Kind(.dominantThirteenth)
79 | public static let majorThirteenth = Kind(.majorThirteenth)
| |- warning: static property 'majorThirteenth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'majorThirteenth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public static let minorThirteenth = Kind(.minorThirteenth)
81 | public static let suspendedSecond = Kind(.suspendedSecond)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:80:23: warning: static property 'minorThirteenth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
78 | public static let dominantThirteenth = Kind(.dominantThirteenth)
79 | public static let majorThirteenth = Kind(.majorThirteenth)
80 | public static let minorThirteenth = Kind(.minorThirteenth)
| |- warning: static property 'minorThirteenth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'minorThirteenth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | public static let suspendedSecond = Kind(.suspendedSecond)
82 | public static let suspendedFourth = Kind(.suspendedFourth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:81:23: warning: static property 'suspendedSecond' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
79 | public static let majorThirteenth = Kind(.majorThirteenth)
80 | public static let minorThirteenth = Kind(.minorThirteenth)
81 | public static let suspendedSecond = Kind(.suspendedSecond)
| |- warning: static property 'suspendedSecond' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'suspendedSecond' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | public static let suspendedFourth = Kind(.suspendedFourth)
83 | public static let neapolitan = Kind(.neapolitan)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:82:23: warning: static property 'suspendedFourth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
80 | public static let minorThirteenth = Kind(.minorThirteenth)
81 | public static let suspendedSecond = Kind(.suspendedSecond)
82 | public static let suspendedFourth = Kind(.suspendedFourth)
| |- warning: static property 'suspendedFourth' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'suspendedFourth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | public static let neapolitan = Kind(.neapolitan)
84 | public static let italian = Kind(.italian)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:83:23: warning: static property 'neapolitan' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
81 | public static let suspendedSecond = Kind(.suspendedSecond)
82 | public static let suspendedFourth = Kind(.suspendedFourth)
83 | public static let neapolitan = Kind(.neapolitan)
| |- warning: static property 'neapolitan' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'neapolitan' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | public static let italian = Kind(.italian)
85 | public static let french = Kind(.french)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:84:23: warning: static property 'italian' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
82 | public static let suspendedFourth = Kind(.suspendedFourth)
83 | public static let neapolitan = Kind(.neapolitan)
84 | public static let italian = Kind(.italian)
| |- warning: static property 'italian' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'italian' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 | public static let french = Kind(.french)
86 | public static let german = Kind(.german)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:85:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
83 | public static let neapolitan = Kind(.neapolitan)
84 | public static let italian = Kind(.italian)
85 | public static let french = Kind(.french)
| |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'french' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
86 | public static let german = Kind(.german)
87 | public static let pedalPointBass = Kind(.pedalPointBass)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:86:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
84 | public static let italian = Kind(.italian)
85 | public static let french = Kind(.french)
86 | public static let german = Kind(.german)
| |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'german' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public static let pedalPointBass = Kind(.pedalPointBass)
88 | public static let power = Kind(.power)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:87:23: warning: static property 'pedalPointBass' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
85 | public static let french = Kind(.french)
86 | public static let german = Kind(.german)
87 | public static let pedalPointBass = Kind(.pedalPointBass)
| |- warning: static property 'pedalPointBass' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'pedalPointBass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public static let power = Kind(.power)
89 | public static let tristan = Kind(.tristan)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:88:23: warning: static property 'power' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
86 | public static let german = Kind(.german)
87 | public static let pedalPointBass = Kind(.pedalPointBass)
88 | public static let power = Kind(.power)
| |- warning: static property 'power' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'power' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | public static let tristan = Kind(.tristan)
90 | public static let other = Kind(.other)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:89:23: warning: static property 'tristan' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
87 | public static let pedalPointBass = Kind(.pedalPointBass)
88 | public static let power = Kind(.power)
89 | public static let tristan = Kind(.tristan)
| |- warning: static property 'tristan' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'tristan' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
90 | public static let other = Kind(.other)
91 | public static let none = Kind(.none)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:90:23: warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
88 | public static let power = Kind(.power)
89 | public static let tristan = Kind(.tristan)
90 | public static let other = Kind(.other)
| |- warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'other' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 | public static let none = Kind(.none)
92 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Kind.swift:91:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
10 | /// make up a polychord, many formatting attributes are here. The alignment attributes are for the
11 | /// entire harmony-chord group of which this kind element is a part.
12 | public struct Kind {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
13 | // MARK: - Instance Properties
14 |
:
89 | public static let tristan = Kind(.tristan)
90 | public static let other = Kind(.other)
91 | public static let none = Kind(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | }
93 |
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:26:23: warning: static property 'maxima' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
24 | // MARK: - Type Properties
25 |
26 | public static let maxima = NoteType(.maxima)
| |- warning: static property 'maxima' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'maxima' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | public static let long = NoteType(.long)
28 | public static let breve = NoteType(.breve)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:27:23: warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
25 |
26 | public static let maxima = NoteType(.maxima)
27 | public static let long = NoteType(.long)
| |- warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'long' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | public static let breve = NoteType(.breve)
29 | public static let whole = NoteType(.whole)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:28:23: warning: static property 'breve' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
26 | public static let maxima = NoteType(.maxima)
27 | public static let long = NoteType(.long)
28 | public static let breve = NoteType(.breve)
| |- warning: static property 'breve' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'breve' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | public static let whole = NoteType(.whole)
30 | public static let half = NoteType(.half)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:29:23: warning: static property 'whole' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
27 | public static let long = NoteType(.long)
28 | public static let breve = NoteType(.breve)
29 | public static let whole = NoteType(.whole)
| |- warning: static property 'whole' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'whole' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static let half = NoteType(.half)
31 | public static let quarter = NoteType(.quarter)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:30:23: warning: static property 'half' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
28 | public static let breve = NoteType(.breve)
29 | public static let whole = NoteType(.whole)
30 | public static let half = NoteType(.half)
| |- warning: static property 'half' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'half' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | public static let quarter = NoteType(.quarter)
32 | public static let eighth = NoteType(.eighth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:31:23: warning: static property 'quarter' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
29 | public static let whole = NoteType(.whole)
30 | public static let half = NoteType(.half)
31 | public static let quarter = NoteType(.quarter)
| |- warning: static property 'quarter' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'quarter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let eighth = NoteType(.eighth)
33 | public static let sixteenth = NoteType(.sixteenth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:32:23: warning: static property 'eighth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
30 | public static let half = NoteType(.half)
31 | public static let quarter = NoteType(.quarter)
32 | public static let eighth = NoteType(.eighth)
| |- warning: static property 'eighth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'eighth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static let sixteenth = NoteType(.sixteenth)
34 | public static let thirysecond = NoteType(.thirysecond)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:33:23: warning: static property 'sixteenth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
31 | public static let quarter = NoteType(.quarter)
32 | public static let eighth = NoteType(.eighth)
33 | public static let sixteenth = NoteType(.sixteenth)
| |- warning: static property 'sixteenth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sixteenth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | public static let thirysecond = NoteType(.thirysecond)
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:34:23: warning: static property 'thirysecond' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
32 | public static let eighth = NoteType(.eighth)
33 | public static let sixteenth = NoteType(.sixteenth)
34 | public static let thirysecond = NoteType(.thirysecond)
| |- warning: static property 'thirysecond' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'thirysecond' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:35:23: warning: static property 'sixtyfourth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
33 | public static let sixteenth = NoteType(.sixteenth)
34 | public static let thirysecond = NoteType(.thirysecond)
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
| |- warning: static property 'sixtyfourth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sixtyfourth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:36:23: warning: static property 'onehundredtwentyeighth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
34 | public static let thirysecond = NoteType(.thirysecond)
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
| |- warning: static property 'onehundredtwentyeighth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'onehundredtwentyeighth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
38 | public static let fivehundredtwelfth = NoteType(.fivehundredtwelfth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:37:23: warning: static property 'twohundredfiftysixth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
35 | public static let sixtyfourth = NoteType(.sixtyfourth)
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
| |- warning: static property 'twohundredfiftysixth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'twohundredfiftysixth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | public static let fivehundredtwelfth = NoteType(.fivehundredtwelfth)
39 | public static let onethousandtwentyfourth = NoteType(.onehundredtwentyeighth)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:38:23: warning: static property 'fivehundredtwelfth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
36 | public static let onehundredtwentyeighth = NoteType(.onehundredtwentyeighth)
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
38 | public static let fivehundredtwelfth = NoteType(.fivehundredtwelfth)
| |- warning: static property 'fivehundredtwelfth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fivehundredtwelfth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | public static let onethousandtwentyfourth = NoteType(.onehundredtwentyeighth)
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/NoteType.swift:39:23: warning: static property 'onethousandtwentyfourth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | /// The note-type type indicates the graphic note type. Values range from 256th to long.
9 | public struct NoteType {
| `- note: consider making struct 'NoteType' conform to the 'Sendable' protocol
10 | public let value: NoteTypeValue
11 | public let size: SymbolSize?
:
37 | public static let twohundredfiftysixth = NoteType(.twohundredfiftysixth)
38 | public static let fivehundredtwelfth = NoteType(.fivehundredtwelfth)
39 | public static let onethousandtwentyfourth = NoteType(.onehundredtwentyeighth)
| |- warning: static property 'onethousandtwentyfourth' is not concurrency-safe because non-'Sendable' type 'NoteType' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'onethousandtwentyfourth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | }
41 |
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:29:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
9 | /// element.
10 | public struct RootStep {
| `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 | public let value: Step
12 | public let text: String?
:
27 | // MARK: - Type Properties
28 |
29 | public static let a = RootStep(.a)
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static let b = RootStep(.b)
31 | public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:30:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
9 | /// element.
10 | public struct RootStep {
| `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 | public let value: Step
12 | public let text: String?
:
28 |
29 | public static let a = RootStep(.a)
30 | public static let b = RootStep(.b)
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | public static let c = RootStep(.c)
32 | public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:31:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
9 | /// element.
10 | public struct RootStep {
| `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 | public let value: Step
12 | public let text: String?
:
29 | public static let a = RootStep(.a)
30 | public static let b = RootStep(.b)
31 | public static let c = RootStep(.c)
| |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let d = RootStep(.d)
33 | public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:32:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
9 | /// element.
10 | public struct RootStep {
| `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 | public let value: Step
12 | public let text: String?
:
30 | public static let b = RootStep(.b)
31 | public static let c = RootStep(.c)
32 | public static let d = RootStep(.d)
| |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static let e = RootStep(.e)
34 | public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:33:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
9 | /// element.
10 | public struct RootStep {
| `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 | public let value: Step
12 | public let text: String?
:
31 | public static let c = RootStep(.c)
32 | public static let d = RootStep(.d)
33 | public static let e = RootStep(.e)
| |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | public static let f = RootStep(.f)
35 | public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:34:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
9 | /// element.
10 | public struct RootStep {
| `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 | public let value: Step
12 | public let text: String?
:
32 | public static let d = RootStep(.d)
33 | public static let e = RootStep(.e)
34 | public static let f = RootStep(.f)
| |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let g = RootStep(.g)
36 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:35:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
9 | /// element.
10 | public struct RootStep {
| `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 | public let value: Step
12 | public let text: String?
:
33 | public static let e = RootStep(.e)
34 | public static let f = RootStep(.f)
35 | public static let g = RootStep(.g)
| |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | }
37 |
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Stem.swift:34:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'Stem' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// relative-y that would flip a stem instead of shortening it are ignored. A stem element
12 | /// associated with a rest refers to a stemlet.
13 | public struct Stem {
| `- note: consider making struct 'Stem' conform to the 'Sendable' protocol
14 | // MARK: - Instance Properties
15 |
:
32 | // MARK: Type Properties
33 |
34 | public static let up = Stem(.up)
| |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'Stem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'up' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let down = Stem(.down)
36 | public static let double = Stem(.double)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Stem.swift:35:23: warning: static property 'down' is not concurrency-safe because non-'Sendable' type 'Stem' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// relative-y that would flip a stem instead of shortening it are ignored. A stem element
12 | /// associated with a rest refers to a stemlet.
13 | public struct Stem {
| `- note: consider making struct 'Stem' conform to the 'Sendable' protocol
14 | // MARK: - Instance Properties
15 |
:
33 |
34 | public static let up = Stem(.up)
35 | public static let down = Stem(.down)
| |- warning: static property 'down' is not concurrency-safe because non-'Sendable' type 'Stem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'down' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | public static let double = Stem(.double)
37 | public static let none = Stem(.none)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Stem.swift:36:23: warning: static property 'double' is not concurrency-safe because non-'Sendable' type 'Stem' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// relative-y that would flip a stem instead of shortening it are ignored. A stem element
12 | /// associated with a rest refers to a stemlet.
13 | public struct Stem {
| `- note: consider making struct 'Stem' conform to the 'Sendable' protocol
14 | // MARK: - Instance Properties
15 |
:
34 | public static let up = Stem(.up)
35 | public static let down = Stem(.down)
36 | public static let double = Stem(.double)
| |- warning: static property 'double' is not concurrency-safe because non-'Sendable' type 'Stem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'double' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let none = Stem(.none)
38 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Stem.swift:37:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Stem' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// relative-y that would flip a stem instead of shortening it are ignored. A stem element
12 | /// associated with a rest refers to a stemlet.
13 | public struct Stem {
| `- note: consider making struct 'Stem' conform to the 'Sendable' protocol
14 | // MARK: - Instance Properties
15 |
:
35 | public static let down = Stem(.down)
36 | public static let double = Stem(.double)
37 | public static let none = Stem(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Stem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Tie.swift:23:23: warning: static property 'start' is not concurrency-safe because non-'Sendable' type 'Tie' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The tie element indicates that a tie begins or ends with this note. The tie element indicates
9 | /// sound; the tied element indicates notation.
10 | public struct Tie {
| `- note: consider making struct 'Tie' conform to the 'Sendable' protocol
11 | public var type: StartStop
12 | public var timeOnly: TimeOnly?
:
21 | // MARK: Type Properties
22 |
23 | public static let start = Tie(.start)
| |- warning: static property 'start' is not concurrency-safe because non-'Sendable' type 'Tie' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'start' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static let stop = Tie(.stop)
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/Tie.swift:24:23: warning: static property 'stop' is not concurrency-safe because non-'Sendable' type 'Tie' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// The tie element indicates that a tie begins or ends with this note. The tie element indicates
9 | /// sound; the tied element indicates notation.
10 | public struct Tie {
| `- note: consider making struct 'Tie' conform to the 'Sendable' protocol
11 | public var type: StartStop
12 | public var timeOnly: TimeOnly?
:
22 |
23 | public static let start = Tie(.start)
24 | public static let stop = Tie(.stop)
| |- warning: static property 'stop' is not concurrency-safe because non-'Sendable' type 'Tie' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'stop' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
Build complete! (22.41s)
Build complete.
{
"dependencies" : [
{
"identity" : "xmlcoder",
"requirement" : {
"branch" : [
"value-coding-key-empty"
]
},
"type" : "sourceControl",
"url" : "https://github.com/bwetherfield/XMLCoder"
},
{
"identity" : "yams",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/jpsim/Yams.git"
}
],
"manifest_display_name" : "MusicXML",
"name" : "MusicXML",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "MusicXML",
"targets" : [
"MusicXML"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MusicXMLTests",
"module_type" : "SwiftTarget",
"name" : "MusicXMLTests",
"path" : "Tests/MusicXMLTests",
"product_dependencies" : [
"Yams"
],
"sources" : [
"Complex Types/AccidentalTests.swift",
"Complex Types/AccordionRegistrationTests.swift",
"Complex Types/ArrowTests.swift",
"Complex Types/AttributesTests.swift",
"Complex Types/BackupTests.swift",
"Complex Types/BarlineTests.swift",
"Complex Types/ClefTests.swift",
"Complex Types/CreatorTests.swift",
"Complex Types/DirectionTests.swift",
"Complex Types/EndingTests.swift",
"Complex Types/FretTests.swift",
"Complex Types/HarmonicTests.swift",
"Complex Types/HarmonyTests.swift",
"Complex Types/IdentificationTests.swift",
"Complex Types/KeyTests.swift",
"Complex Types/LyricFontTests.swift",
"Complex Types/MIDIDeviceTests.swift",
"Complex Types/MIDIInstrumentTests.swift",
"Complex Types/MeasureNumberingTests.swift",
"Complex Types/MeasureStyleTests.swift",
"Complex Types/MetronomeTests.swift",
"Complex Types/MiscellaneousTests.swift",
"Complex Types/MusicDataTests.swift",
"Complex Types/NotationsTests.swift",
"Complex Types/NoteTests.swift",
"Complex Types/OrnamentsTests.swift",
"Complex Types/PartListTests.swift",
"Complex Types/PartNameTests.swift",
"Complex Types/PartwiseMeasureTests.swift",
"Complex Types/PartwisePartTests.swift",
"Complex Types/PitchTests.swift",
"Complex Types/PitchUnpitchedRestTests.swift",
"Complex Types/RestTests.swift",
"Complex Types/ScoreInstrumentTests.swift",
"Complex Types/ScorePartTests.swift",
"Complex Types/SystemLayoutTests.swift",
"Complex Types/TimeTests.swift",
"HelloWorld.swift",
"LilyPondTests/ArticulationsTextsTests.swift",
"LilyPondTests/ChordsFretsTests.swift",
"LilyPondTests/DirectionsTests.swift",
"LilyPondTests/LilyPondTestSuite.swift",
"LilyPondTests/MidmeasureClefTests.swift",
"LilyPondTests/PartNameLineBreakTests.swift",
"LilyPondTests/PercussionTests.swift",
"LilyPondTests/PickupMeasureChordnamesFiguredBassTests.swift",
"LilyPondTests/RepeatWithAlternativesTests.swift",
"LilyPondTests/SimpleRepeatTests.swift",
"LilyPondTests/StabatMaterTests.swift",
"LilyPondTests/StaffNoteStylesTests.swift",
"LilyPondTests/TupletsTremoloTest.swift",
"ReveTests.swift",
"ScoreTests/ScoreTestCaseManifest.swift",
"ScoreTests/ScoreTestExpectation.swift",
"ScoreTests/ScoreTestSuite.swift",
"TraversalConversionTests.swift",
"XCTestHelpers.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"MusicXML"
],
"type" : "test"
},
{
"c99name" : "MusicXML",
"module_type" : "SwiftTarget",
"name" : "MusicXML",
"path" : "Sources/MusicXML",
"product_dependencies" : [
"XMLCoder"
],
"product_memberships" : [
"MusicXML"
],
"sources" : [
"Complex Types/Accidental.swift",
"Complex Types/AccidentalMark.swift",
"Complex Types/AccidentalText.swift",
"Complex Types/Accord.swift",
"Complex Types/AccordionRegistration.swift",
"Complex Types/Appearance.swift",
"Complex Types/Arpeggiate.swift",
"Complex Types/Arrow.swift",
"Complex Types/Articulation.swift",
"Complex Types/Articulations.swift",
"Complex Types/Attributes.swift",
"Complex Types/Backup.swift",
"Complex Types/BarStyleColor.swift",
"Complex Types/Barline.swift",
"Complex Types/Barre.swift",
"Complex Types/Bass.swift",
"Complex Types/BassAlter.swift",
"Complex Types/BassStep.swift",
"Complex Types/Beam.swift",
"Complex Types/BeatRepeat.swift",
"Complex Types/Beater.swift",
"Complex Types/Bend.swift",
"Complex Types/BendSound.swift",
"Complex Types/Bezier.swift",
"Complex Types/Bookmark.swift",
"Complex Types/Bracket.swift",
"Complex Types/BreathMark.swift",
"Complex Types/Cancel.swift",
"Complex Types/Clef.swift",
"Complex Types/Creator.swift",
"Complex Types/Credit.swift",
"Complex Types/DashedFormatting.swift",
"Complex Types/Dashes.swift",
"Complex Types/Defaults.swift",
"Complex Types/Degree.swift",
"Complex Types/DegreeAlter.swift",
"Complex Types/DegreeType.swift",
"Complex Types/DegreeValue.swift",
"Complex Types/Direction.swift",
"Complex Types/DirectionType.swift",
"Complex Types/Distance.swift",
"Complex Types/Dynamic.swift",
"Complex Types/Dynamics.swift",
"Complex Types/Editorial.swift",
"Complex Types/EditorialVoice.swift",
"Complex Types/Encoding.swift",
"Complex Types/Ending.swift",
"Complex Types/Extend.swift",
"Complex Types/Feature.swift",
"Complex Types/Fermata.swift",
"Complex Types/Figure.swift",
"Complex Types/FiguredBass.swift",
"Complex Types/Fingering.swift",
"Complex Types/FirstFret.swift",
"Complex Types/Font.swift",
"Complex Types/FormattedText.swift",
"Complex Types/Forward.swift",
"Complex Types/Frame.swift",
"Complex Types/FrameNote.swift",
"Complex Types/Fret.swift",
"Complex Types/Glissando.swift",
"Complex Types/Grace.swift",
"Complex Types/GroupBarline.swift",
"Complex Types/GroupName.swift",
"Complex Types/GroupSymbol.swift",
"Complex Types/Grouping.swift",
"Complex Types/HammerOnPullOff.swift",
"Complex Types/Handbell.swift",
"Complex Types/Harmonic.swift",
"Complex Types/Harmony.swift",
"Complex Types/HarmonyChord.swift",
"Complex Types/HarpPedals.swift",
"Complex Types/Header.swift",
"Complex Types/HeelToe.swift",
"Complex Types/Hole.swift",
"Complex Types/HoleClosed.swift",
"Complex Types/HorizontalTurn.swift",
"Complex Types/Identification.swift",
"Complex Types/Image.swift",
"Complex Types/Instrument.swift",
"Complex Types/Interchangeable.swift",
"Complex Types/Internal/ComplexTypesInternalConformance.swift",
"Complex Types/Inversion.swift",
"Complex Types/Justify.swift",
"Complex Types/Key.swift",
"Complex Types/KeyOctave.swift",
"Complex Types/Kind.swift",
"Complex Types/Level.swift",
"Complex Types/LevelDisplay.swift",
"Complex Types/Line.swift",
"Complex Types/LineWidth.swift",
"Complex Types/LinearArrow.swift",
"Complex Types/Link.swift",
"Complex Types/Lyric.swift",
"Complex Types/LyricFont.swift",
"Complex Types/LyricLanguage.swift",
"Complex Types/MIDIDevice.swift",
"Complex Types/MIDIInstrument.swift",
"Complex Types/MeasureAttributes.swift",
"Complex Types/MeasureLayout.swift",
"Complex Types/MeasureNumbering.swift",
"Complex Types/MeasureRepeat.swift",
"Complex Types/MeasureStyle.swift",
"Complex Types/Metronome.swift",
"Complex Types/MetronomeBeam.swift",
"Complex Types/MetronomeNote.swift",
"Complex Types/MetronomeTuplet.swift",
"Complex Types/Miscellaneous.swift",
"Complex Types/MiscellaneousField.swift",
"Complex Types/Mordent.swift",
"Complex Types/MultipleRest.swift",
"Complex Types/MusicData.swift",
"Complex Types/MusicXML.String.swift",
"Complex Types/NameDisplay.swift",
"Complex Types/NonArpeggiate.swift",
"Complex Types/Notations.swift",
"Complex Types/Note.swift",
"Complex Types/NoteSize.swift",
"Complex Types/NoteType.swift",
"Complex Types/Notehead.swift",
"Complex Types/NoteheadText.swift",
"Complex Types/OctaveShift.swift",
"Complex Types/Offset.swift",
"Complex Types/Opus.swift",
"Complex Types/Ornament.swift",
"Complex Types/Ornaments.swift",
"Complex Types/OtherAppearance.swift",
"Complex Types/OtherDirection.swift",
"Complex Types/OtherDynamics.swift",
"Complex Types/OtherNotation.swift",
"Complex Types/OtherPlay.swift",
"Complex Types/PageLayout.swift",
"Complex Types/PageMargins.swift",
"Complex Types/PartGroup.swift",
"Complex Types/PartList.swift",
"Complex Types/PartName.swift",
"Complex Types/PartSymbol.swift",
"Complex Types/Partwise/Partwise.Measure.swift",
"Complex Types/Partwise/Partwise.Part.swift",
"Complex Types/Partwise/Partwise.swift",
"Complex Types/Pedal.swift",
"Complex Types/PedalTuning.swift",
"Complex Types/PerMinute.swift",
"Complex Types/Percussion.swift",
"Complex Types/Pitch.swift",
"Complex Types/PitchUnpitchedRest.swift",
"Complex Types/PlacementPrintStyle.swift",
"Complex Types/PlacementText.swift",
"Complex Types/Play.swift",
"Complex Types/Position.swift",
"Complex Types/PrincipleVoice.swift",
"Complex Types/Print.swift",
"Complex Types/PrintStyle.swift",
"Complex Types/PrintStyleAlign.swift",
"Complex Types/PrintStyleAlignObject.swift",
"Complex Types/PrintStyleTrillSound.swift",
"Complex Types/Printout.swift",
"Complex Types/Repeat.swift",
"Complex Types/Rest.swift",
"Complex Types/Rights.swift",
"Complex Types/Root.swift",
"Complex Types/RootAlter.swift",
"Complex Types/RootStep.swift",
"Complex Types/SMuFL.swift",
"Complex Types/SMuFLGlyph.swift",
"Complex Types/Scaling.swift",
"Complex Types/Scordatura.swift",
"Complex Types/Score.swift",
"Complex Types/ScoreInstrument.swift",
"Complex Types/ScorePart.swift",
"Complex Types/Slash.swift",
"Complex Types/Slide.swift",
"Complex Types/Slur.swift",
"Complex Types/Sound.swift",
"Complex Types/StaffDetails.swift",
"Complex Types/StaffLayout.swift",
"Complex Types/StaffTuning.swift",
"Complex Types/Stem.swift",
"Complex Types/Stick.swift",
"Complex Types/StringMute.swift",
"Complex Types/StrongAccent.swift",
"Complex Types/StyleText.swift",
"Complex Types/Supports.swift",
"Complex Types/SystemDividers.swift",
"Complex Types/SystemLayout.swift",
"Complex Types/SystemMargins.swift",
"Complex Types/Technical.swift",
"Complex Types/Technique.swift",
"Complex Types/TextDecoration.swift",
"Complex Types/TextElementData.swift",
"Complex Types/TextFontColor.swift",
"Complex Types/Tie.swift",
"Complex Types/Tied.swift",
"Complex Types/Ties.swift",
"Complex Types/Time.swift",
"Complex Types/TimeModification.swift",
"Complex Types/Timewise/Timewise.Measure.swift",
"Complex Types/Timewise/Timewise.Part.swift",
"Complex Types/Timewise/Timewise.swift",
"Complex Types/Transpose.swift",
"Complex Types/Tremolo.swift",
"Complex Types/TrillSound.swift",
"Complex Types/Tuplet.swift",
"Complex Types/TupletDot.swift",
"Complex Types/TupletNumber.swift",
"Complex Types/TupletPortion.swift",
"Complex Types/TupletType.swift",
"Complex Types/Unpitched.swift",
"Complex Types/VirtualInstrument.swift",
"Complex Types/WavyLine.swift",
"Complex Types/Wedge.swift",
"Complex Types/Work.swift",
"Decoding/Decoding.swift",
"InternalTypes/AttributeGroup.swift",
"InternalTypes/Empty.swift",
"Simple Types/AboveBelow.swift",
"Simple Types/AccidentalValue.swift",
"Simple Types/AccordionMiddle.swift",
"Simple Types/ArrowDirection.swift",
"Simple Types/ArrowStyle.swift",
"Simple Types/BackwardForward.swift",
"Simple Types/BarStyle.swift",
"Simple Types/BeamLevel.swift",
"Simple Types/BeamValue.swift",
"Simple Types/BeaterValue.swift",
"Simple Types/BreathMarkValue.swift",
"Simple Types/CSSFontSize.swift",
"Simple Types/CancelLocation.swift",
"Simple Types/CircularArrow.swift",
"Simple Types/ClefSign.swift",
"Simple Types/Color.swift",
"Simple Types/CommaSeparatedText.swift",
"Simple Types/DegreeSymbolValue.swift",
"Simple Types/DegreeTypeValue.swift",
"Simple Types/DistanceType.swift",
"Simple Types/Divisions.swift",
"Simple Types/Effect.swift",
"Simple Types/EnclosureShape.swift",
"Simple Types/EndingNumber.swift",
"Simple Types/Fan.swift",
"Simple Types/FermataShape.swift",
"Simple Types/Fifths.swift",
"Simple Types/FontSize.swift",
"Simple Types/FontStyle.swift",
"Simple Types/FontWeight.swift",
"Simple Types/Glass.swift",
"Simple Types/GroupBarlineValue.swift",
"Simple Types/GroupSymbolValue.swift",
"Simple Types/HandbellValue.swift",
"Simple Types/HarmonyType.swift",
"Simple Types/HoleClosedLocation.swift",
"Simple Types/HoleClosedValue.swift",
"Simple Types/Internal/SimpleTypesInternalConformance.swift",
"Simple Types/KindValue.swift",
"Simple Types/LeftCenterRight.swift",
"Simple Types/LeftRight.swift",
"Simple Types/LineEnd.swift",
"Simple Types/LineShape.swift",
"Simple Types/LineType.swift",
"Simple Types/LineWidthType.swift",
"Simple Types/MarginType.swift",
"Simple Types/MeasureNumberingValue.swift",
"Simple Types/Membrane.swift",
"Simple Types/Metal.swift",
"Simple Types/Mode.swift",
"Simple Types/MusicXML.swift",
"Simple Types/Mute.swift",
"Simple Types/NonNegativeDecimal.swift",
"Simple Types/NoteSizeType.swift",
"Simple Types/NoteTypeValue.swift",
"Simple Types/NoteheadValue.swift",
"Simple Types/NumberOrNormal.swift",
"Simple Types/OnOff.swift",
"Simple Types/OverUnder.swift",
"Simple Types/Pitched.swift",
"Simple Types/PrincipleVoiceSymbol.swift",
"Simple Types/RightLeftMiddle.swift",
"Simple Types/SemiPitched.swift",
"Simple Types/ShowFrets.swift",
"Simple Types/ShowTuplet.swift",
"Simple Types/StaffType.swift",
"Simple Types/StartNote.swift",
"Simple Types/StartStop.swift",
"Simple Types/StartStopChangeContinue.swift",
"Simple Types/StartStopContinue.swift",
"Simple Types/StartStopDiscontinue.swift",
"Simple Types/StartStopSingle.swift",
"Simple Types/StemValue.swift",
"Simple Types/Step.swift",
"Simple Types/StickLocation.swift",
"Simple Types/StickMaterial.swift",
"Simple Types/StickType.swift",
"Simple Types/Syllabic.swift",
"Simple Types/SymbolSize.swift",
"Simple Types/Tenths.swift",
"Simple Types/TextDirection.swift",
"Simple Types/TimeOnly.swift",
"Simple Types/TimeRelation.swift",
"Simple Types/TimeSeparator.swift",
"Simple Types/TimeSymbol.swift",
"Simple Types/TipDirection.swift",
"Simple Types/TopBottom.swift",
"Simple Types/TrillStep.swift",
"Simple Types/TwoNoteTurn.swift",
"Simple Types/UpDown.swift",
"Simple Types/UpDownStopContinue.swift",
"Simple Types/UprightInverted.swift",
"Simple Types/VAlign.swift",
"Simple Types/VAlignImage.swift",
"Simple Types/WedgeType.swift",
"Simple Types/Winged.swift",
"Simple Types/Wood.swift",
"Simple Types/YesNo.swift",
"Simple Types/YesNoNumber.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.