The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of swift-mmio, reference 0.0.2 (e75a13), with Swift 6.0 for Linux on 30 Nov 2024 14:28:02 UTC.

Swift 6 data race errors: 48

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:19:21: warning: static property 'swiftInteger' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 | extension Parser where Input == Substring, Output == Int {
 19 |   public static let swiftInteger = Self { input in
    |                     |- warning: static property 'swiftInteger' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'swiftInteger' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |     let original = input
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:69:21: warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 67 |
 68 | extension Parser where Input == Substring, Output == Int {
 69 |   public static let binaryDigit = Self { input in
    |                     |- warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'binaryDigit' with '@MainActor' 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 |     guard let ascii = input.first?.asciiValue else { return nil }
 71 |     switch ascii {
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:80:21: warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 78 |   }
 79 |
 80 |   public static let octalDigit = Self { input in
    |                     |- warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'octalDigit' with '@MainActor' 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 |     guard let ascii = input.first?.asciiValue else { return nil }
 82 |     switch ascii {
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:91:21: warning: static property 'decimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |   }
 90 |
 91 |   public static let decimalDigit = Self { input in
    |                     |- warning: static property 'decimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'decimalDigit' with '@MainActor' 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 |     guard let ascii = input.first?.asciiValue else { return nil }
 93 |     switch ascii {
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:102:21: warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
100 |   }
101 |
102 |   public static let hexadecimalDigit = Self { input in
    |                     |- warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hexadecimalDigit' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |     guard let ascii = input.first?.asciiValue else { return nil }
104 |     switch ascii {
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
[33/51] Compiling MMIOUtilities Parser+Integer.swift
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:19:21: warning: static property 'swiftInteger' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 | extension Parser where Input == Substring, Output == Int {
 19 |   public static let swiftInteger = Self { input in
    |                     |- warning: static property 'swiftInteger' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'swiftInteger' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |     let original = input
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:69:21: warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 67 |
 68 | extension Parser where Input == Substring, Output == Int {
 69 |   public static let binaryDigit = Self { input in
    |                     |- warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'binaryDigit' with '@MainActor' 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 |     guard let ascii = input.first?.asciiValue else { return nil }
 71 |     switch ascii {
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:80:21: warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 78 |   }
 79 |
 80 |   public static let octalDigit = Self { input in
    |                     |- warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'octalDigit' with '@MainActor' 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 |     guard let ascii = input.first?.asciiValue else { return nil }
 82 |     switch ascii {
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:91:21: warning: static property 'decimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |   }
 90 |
 91 |   public static let decimalDigit = Self { input in
    |                     |- warning: static property 'decimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'decimalDigit' with '@MainActor' 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 |     guard let ascii = input.first?.asciiValue else { return nil }
 93 |     switch ascii {
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser+Integer.swift:102:21: warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
100 |   }
101 |
102 |   public static let hexadecimalDigit = Self { input in
    |                     |- warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hexadecimalDigit' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |     guard let ascii = input.first?.asciiValue else { return nil }
104 |     switch ascii {
/host/spi-builder-workspace/Sources/MMIOUtilities/Parser.swift:19:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 17 | // understand performant and ergonomic parsing.
 18 |
 19 | public struct Parser<Input, Output> {
    |               `- note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
 20 |   public let run: (inout Input) -> Output?
 21 |
[34/51] Compiling MMIOUtilities LLVMDiagnosticKind.swift
[35/52] Wrapping AST for SwiftSyntax509 for debugging
[37/56] Wrapping AST for MMIOUtilities for debugging
[39/97] Compiling SwiftSyntax AbsolutePosition.swift
[40/97] Compiling SwiftSyntax Assert.swift
[41/97] Compiling SwiftSyntax BumpPtrAllocator.swift
[42/97] Compiling SwiftSyntax CommonAncestor.swift
[43/97] Compiling SwiftSyntax Convenience.swift
[44/97] Compiling SwiftSyntax MemoryLayout.swift
[45/97] Compiling SwiftSyntax MissingNodeInitializers.swift
[46/103] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[47/103] Compiling SwiftSyntax Syntax.swift
[48/103] Compiling SwiftSyntax SyntaxArena.swift
[49/103] Compiling SwiftSyntax SyntaxChildren.swift
[50/103] Compiling SwiftSyntax SyntaxCollection.swift
[51/103] Compiling SwiftSyntax SyntaxData.swift
[52/103] Compiling SwiftSyntax RawSyntax.swift
[53/103] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[54/103] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[55/103] Compiling SwiftSyntax RawSyntaxTokenView.swift
[56/103] Compiling SwiftSyntax SourceLength.swift
[57/103] Compiling SwiftSyntax SourceLocation.swift
[58/103] Compiling SwiftSyntax SourcePresence.swift
[59/103] Emitting module SwiftSyntax
[60/103] Compiling SwiftSyntax ChildNameForKeyPath.swift
[61/103] Compiling SwiftSyntax Keyword.swift
[62/103] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[63/103] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[64/103] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[65/103] Compiling SwiftSyntax SyntaxBaseNodes.swift
[66/103] Compiling SwiftSyntax SyntaxCollections.swift
[67/103] Compiling SwiftSyntax SyntaxEnum.swift
[68/103] Compiling SwiftSyntax SyntaxKind.swift
[69/103] Compiling SwiftSyntax SyntaxRewriter.swift
[70/103] Compiling SwiftSyntax SyntaxTraits.swift
[71/103] Compiling SwiftSyntax SyntaxTransform.swift
[72/103] Compiling SwiftSyntax SyntaxDeclNodes.swift
[73/103] Compiling SwiftSyntax SyntaxExprNodes.swift
[74/103] Compiling SwiftSyntax SyntaxNodes.swift
[75/103] Compiling SwiftSyntax SyntaxPatternNodes.swift
[76/103] Compiling SwiftSyntax SyntaxStmtNodes.swift
[77/103] Compiling SwiftSyntax SyntaxTypeNodes.swift
[78/103] Compiling SwiftSyntax SyntaxText.swift
[79/103] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[80/103] Compiling SwiftSyntax TokenDiagnostic.swift
[81/103] Compiling SwiftSyntax TokenSyntax.swift
[82/103] Compiling SwiftSyntax Trivia.swift
[83/103] Compiling SwiftSyntax Utils.swift
[84/103] Compiling SwiftSyntax SyntaxVisitor.swift
[85/103] Compiling SwiftSyntax TokenKind.swift
[86/103] Compiling SwiftSyntax Tokens.swift
[87/103] Compiling SwiftSyntax TriviaPieces.swift
[88/103] Compiling SwiftSyntax RawSyntaxNodes.swift
[89/103] Compiling SwiftSyntax RawSyntaxValidation.swift
[90/104] Wrapping AST for SwiftSyntax for debugging
[92/155] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[93/155] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[94/155] Emitting module SwiftDiagnostics
[95/155] Compiling SwiftDiagnostics Convenience.swift
[96/155] Compiling SwiftDiagnostics Message.swift
[97/155] Compiling SwiftDiagnostics Note.swift
[98/155] Compiling SwiftDiagnostics FixIt.swift
[99/155] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[100/155] Compiling SwiftBasicFormat Syntax+Extensions.swift
[101/155] Emitting module SwiftBasicFormat
[102/155] Compiling SwiftBasicFormat BasicFormat.swift
[103/156] Compiling SwiftDiagnostics Diagnostic.swift
[104/156] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[106/157] Wrapping AST for SwiftBasicFormat for debugging
[107/157] Wrapping AST for SwiftDiagnostics for debugging
[109/157] Compiling SwiftParser Lexer.swift
[110/157] Compiling SwiftParser RegexLiteralLexer.swift
[111/157] Compiling SwiftParser UnicodeScalarExtensions.swift
[112/157] Compiling SwiftParser Lookahead.swift
[113/157] Compiling SwiftParser LoopProgressCondition.swift
[114/162] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[115/162] Compiling SwiftParser StringLiterals.swift
[116/162] Compiling SwiftParser SwiftParserCompatibility.swift
[117/162] Compiling SwiftParser SyntaxUtils.swift
[118/162] Compiling SwiftParser TokenConsumer.swift
[119/162] Compiling SwiftParser TokenPrecedence.swift
[120/162] Compiling SwiftParser TokenSpec.swift
[121/162] Compiling SwiftParser TokenSpecSet.swift
[122/162] Compiling SwiftParser TopLevel.swift
[123/162] Compiling SwiftParser TriviaParser.swift
[124/162] Compiling SwiftParser Parser.swift
[125/162] Compiling SwiftParser Patterns.swift
[126/162] Compiling SwiftParser Recovery.swift
[127/162] Compiling SwiftParser Specifiers.swift
[128/162] Compiling SwiftParser Statements.swift
[129/162] Compiling SwiftParser Modifiers.swift
[130/162] Compiling SwiftParser Names.swift
[131/162] Compiling SwiftParser Nominals.swift
[132/162] Compiling SwiftParser Parameters.swift
[133/162] Compiling SwiftParser ParseSourceFile.swift
[134/162] Emitting module SwiftParser
[135/162] Compiling SwiftParser ExperimentalFeatures.swift
[136/162] Compiling SwiftParser Expressions.swift
[137/162] Compiling SwiftParser IncrementalParseTransition.swift
[138/162] Compiling SwiftParser Cursor.swift
[139/162] Compiling SwiftParser Lexeme.swift
[140/162] Compiling SwiftParser LexemeSequence.swift
[141/162] Compiling SwiftParser Attributes.swift
[142/162] Compiling SwiftParser Availability.swift
[143/162] Compiling SwiftParser CharacterInfo.swift
[144/162] Compiling SwiftParser CollectionNodes+Parsable.swift
[145/162] Compiling SwiftParser Declarations.swift
[146/162] Compiling SwiftParser Directives.swift
[147/162] Compiling SwiftParser Types.swift
[148/162] Compiling SwiftParser IsLexerClassified.swift
[149/162] Compiling SwiftParser LayoutNodes+Parsable.swift
[150/162] Compiling SwiftParser Parser+TokenSpecSet.swift
[151/162] Compiling SwiftParser TokenSpecStaticMembers.swift
[152/163] Wrapping AST for SwiftParser for debugging
[154/186] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[155/187] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[156/187] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[157/187] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[158/187] Emitting module SwiftOperators
[159/187] Compiling SwiftParserDiagnostics MissingNodesError.swift
[160/187] Compiling SwiftParserDiagnostics MissingTokenError.swift
[161/188] Compiling SwiftOperators PrecedenceGroup.swift
[162/188] Compiling SwiftOperators OperatorTable+Folding.swift
[163/188] Compiling SwiftOperators OperatorTable.swift
[164/188] Compiling SwiftOperators PrecedenceGraph.swift
[165/188] Compiling SwiftOperators OperatorTable+Semantics.swift
[166/188] Compiling SwiftOperators SyntaxSynthesis.swift
[167/189] Wrapping AST for SwiftOperators for debugging
[169/189] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[170/189] Compiling SwiftParserDiagnostics Utils.swift
[171/189] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[176/189] Emitting module SwiftParserDiagnostics
[177/189] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[178/189] Compiling SwiftParserDiagnostics PresenceUtils.swift
[179/189] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[180/189] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[181/190] Wrapping AST for SwiftParserDiagnostics for debugging
[183/204] Compiling SwiftSyntaxBuilder Indenter.swift
[184/204] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[185/204] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[186/204] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[187/205] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[188/205] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[189/205] Emitting module SwiftSyntaxBuilder
[190/205] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[191/205] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[192/205] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[193/205] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[194/205] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[195/205] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[196/205] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[197/205] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[198/206] Wrapping AST for SwiftSyntaxBuilder for debugging
[200/220] Compiling SwiftSyntaxMacros AccessorMacro.swift
[201/220] Compiling SwiftSyntaxMacros AttachedMacro.swift
[202/220] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[203/220] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[204/221] Compiling SwiftSyntaxMacros MemberMacro.swift
[205/221] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[206/221] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[207/221] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[208/221] Compiling SwiftSyntaxMacros Macro+Format.swift
[209/221] Compiling SwiftSyntaxMacros Macro.swift
[210/221] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[211/221] Compiling SwiftSyntaxMacros PeerMacro.swift
[212/221] Emitting module SwiftSyntaxMacros
[213/221] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[214/221] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[215/222] Wrapping AST for SwiftSyntaxMacros for debugging
[217/230] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[218/230] Emitting module SwiftSyntaxMacroExpansion
[219/230] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[220/230] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[221/230] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[222/230] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[223/230] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[224/230] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[225/231] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[227/238] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[228/238] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[229/238] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[230/238] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[231/238] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[232/238] Emitting module SwiftCompilerPluginMessageHandling
[233/238] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[234/239] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[236/241] Emitting module SwiftCompilerPlugin
[237/241] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[238/242] Wrapping AST for SwiftCompilerPlugin for debugging
[240/270] Compiling MMIOMacros MMIOMemberMacro.swift
[241/270] Compiling MMIOMacros PatternBindingSyntax.swift
[242/270] Compiling MMIOMacros SyntaxStringInterpolation.swift
[243/273] Emitting module MMIOMacros
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:72:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 70 |
 71 |   @Argument(label: "bits")
 72 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:74:7: warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 72 |   var bitRanges: [BitRange]
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 75 |
 76 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/Arguments/BitFieldTypeProjection.swift:17:8: note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
15 | import SwiftSyntaxMacros
16 |
17 | struct BitFieldTypeProjection {
   |        `- note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
18 |   var expression: ExprSyntax
19 | }
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:98:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 96 |
 97 |   @Argument(label: "bits")
 98 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:101:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
101 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
102 |
103 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:127:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
125 |
126 |   @Argument(label: "bits")
127 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:130:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
130 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
131 |
132 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:156:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
154 |
155 |   @Argument(label: "bits")
156 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:159:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
159 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
160 |
161 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMacro.swift:33:14: warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension RegisterBankMacro: MMIOMemberMacro {
33 |   static var memberMacroSuppressParsingDiagnostics: Bool = false
   |              |- warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'memberMacroSuppressParsingDiagnostics' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'memberMacroSuppressParsingDiagnostics' with '@MainActor' 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 |
35 |   func expansion(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:81:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 79 | public struct RegisterBankScalarMemberMacro {
 80 |   @Argument(label: "offset")
 81 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 82 | }
 83 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:124:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
122 | public struct RegisterBankArrayMemberMacro {
123 |   @Argument(label: "offset")
124 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
125 |   @Argument(label: "stride")
126 |   var stride: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:126:7: warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
124 |   var offset: Int
125 |   @Argument(label: "stride")
126 |   var stride: Int
    |       `- warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
127 |   @Argument(label: "count")
128 |   var count: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:128:7: warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
126 |   var stride: Int
127 |   @Argument(label: "count")
128 |   var count: Int
    |       `- warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
129 | }
130 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterMacro.swift:20:7: warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 18 | public struct RegisterMacro {
 19 |   @Argument(label: "bitWidth")
 20 |   var bitWidth: BitWidth
    |       `- warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 21 | }
 22 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/ParsableMacro.swift:15:13: warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 | import SwiftSyntaxMacros
 14 |
 15 | private var signatureCache =
    |             |- warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'signatureCache' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'signatureCache' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:21:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 19 |
 20 | extension AccessorDeclSyntax: DiagnosableDeclSyntaxProtocol {
 21 |   static var declTypeName = "accessor"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |   var introducerKeyword: TokenSyntax { self.accessorSpecifier }
 23 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:31:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 | extension AssociatedTypeDeclSyntax: DiagnosableDeclSyntaxProtocol {
 31 |   static var declTypeName = "associated type"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.associatedtypeKeyword }
 33 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:41:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 | extension DeinitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 41 |   static var declTypeName = "deinitializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |   var introducerKeyword: TokenSyntax { self.deinitKeyword }
 43 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:46:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 | extension EditorPlaceholderDeclSyntax: DiagnosableDeclSyntaxProtocol {
 46 |   static var declTypeName = "editor placeholder"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   var introducerKeyword: TokenSyntax { self.placeholder }
 48 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:66:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 |
 65 | extension FunctionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 66 |   static var declTypeName = "function"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.funcKeyword }
 68 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:71:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |
 70 | extension IfConfigDeclSyntax: DiagnosableDeclSyntaxProtocol {
 71 |   static var declTypeName = "if config"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax {
 73 |     self.clauses.first?.poundKeyword ?? .poundToken()
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:78:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 | extension ImportDeclSyntax: DiagnosableDeclSyntaxProtocol {
 78 |   static var declTypeName = "import"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.importKeyword }
 80 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:83:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |
 82 | extension InitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 83 |   static var declTypeName = "initializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.initKeyword }
 85 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:88:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 | extension MacroDeclSyntax: DiagnosableDeclSyntaxProtocol {
 88 |   static var declTypeName = "macro"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroKeyword }
 90 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:93:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | extension MacroExpansionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 93 |   static var declTypeName = "macro expansion"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroName }
 95 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:98:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 |
 97 | extension MissingDeclSyntax: DiagnosableDeclSyntaxProtocol {
 98 |   static var declTypeName = "missing"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |   var introducerKeyword: TokenSyntax { self.placeholder }
100 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:103:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
101 |
102 | extension OperatorDeclSyntax: DiagnosableDeclSyntaxProtocol {
103 |   static var declTypeName = "operator"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |   var introducerKeyword: TokenSyntax { self.operatorKeyword }
105 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:108:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 |
107 | extension PoundSourceLocationSyntax: DiagnosableDeclSyntaxProtocol {
108 |   static var declTypeName = "pound source location"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |   var introducerKeyword: TokenSyntax { self.poundSourceLocation }
110 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:113:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
111 |
112 | extension PrecedenceGroupDeclSyntax: DiagnosableDeclSyntaxProtocol {
113 |   static var declTypeName = "precedence group"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |   var introducerKeyword: TokenSyntax { self.precedencegroupKeyword }
115 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:128:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | extension SubscriptDeclSyntax: DiagnosableDeclSyntaxProtocol {
128 |   static var declTypeName = "subscript"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |   var introducerKeyword: TokenSyntax { self.subscriptKeyword }
130 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:133:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | extension TypeAliasDeclSyntax: DiagnosableDeclSyntaxProtocol {
133 |   static var declTypeName = "type alias"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |   var introducerKeyword: TokenSyntax { self.typealiasKeyword }
135 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:138:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | extension VariableDeclSyntax: DiagnosableDeclSyntaxProtocol {
138 |   static var declTypeName = "variable"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[244/273] Compiling MMIOMacros VariableDeclSyntax.swift
[245/273] Compiling MMIOMacros WithAttributesSyntax.swift
[246/273] Compiling MMIOMacros WithModifiersSyntax.swift
[247/273] Compiling MMIOMacros CompilerPluginMain.swift
[248/273] Compiling MMIOMacros BitFieldTypeProjection.swift
[249/273] Compiling MMIOMacros BitRange.swift
[250/273] Compiling MMIOMacros BitWidth.swift
[251/273] Compiling MMIOMacros IntegerLiteralExprSyntax.swift
[252/273] Compiling MMIOMacros MMIOAccessorMacro.swift
[253/273] Compiling MMIOMacros MMIOExtensionMacro.swift
[254/273] Compiling MMIOMacros MMIOMemberAttributeMacro.swift
[255/273] Compiling MMIOMacros Argument.swift
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/ParsableMacro.swift:15:13: warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 | import SwiftSyntaxMacros
 14 |
 15 | private var signatureCache =
    |             |- warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'signatureCache' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'signatureCache' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
[256/273] Compiling MMIOMacros ArgumentContainer.swift
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/ParsableMacro.swift:15:13: warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 | import SwiftSyntaxMacros
 14 |
 15 | private var signatureCache =
    |             |- warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'signatureCache' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'signatureCache' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
[257/273] Compiling MMIOMacros ExpressibleByExprSyntax.swift
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/ParsableMacro.swift:15:13: warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 | import SwiftSyntaxMacros
 14 |
 15 | private var signatureCache =
    |             |- warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'signatureCache' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'signatureCache' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
[258/273] Compiling MMIOMacros ParsableMacro.swift
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/ParsableMacro.swift:15:13: warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 | import SwiftSyntaxMacros
 14 |
 15 | private var signatureCache =
    |             |- warning: var 'signatureCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'signatureCache' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'signatureCache' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
[259/273] Compiling MMIOMacros ExprSyntax+ExpressibleByExprSyntax.swift
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:72:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 70 |
 71 |   @Argument(label: "bits")
 72 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:74:7: warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 72 |   var bitRanges: [BitRange]
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 75 |
 76 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/Arguments/BitFieldTypeProjection.swift:17:8: note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
15 | import SwiftSyntaxMacros
16 |
17 | struct BitFieldTypeProjection {
   |        `- note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
18 |   var expression: ExprSyntax
19 | }
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:98:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 96 |
 97 |   @Argument(label: "bits")
 98 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:101:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
101 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
102 |
103 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:127:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
125 |
126 |   @Argument(label: "bits")
127 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:130:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
130 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
131 |
132 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:156:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
154 |
155 |   @Argument(label: "bits")
156 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:159:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
159 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
160 |
161 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
[260/273] Compiling MMIOMacros Int+ExpressibleByExprSyntax.swift
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:72:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 70 |
 71 |   @Argument(label: "bits")
 72 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:74:7: warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 72 |   var bitRanges: [BitRange]
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 75 |
 76 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/Arguments/BitFieldTypeProjection.swift:17:8: note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
15 | import SwiftSyntaxMacros
16 |
17 | struct BitFieldTypeProjection {
   |        `- note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
18 |   var expression: ExprSyntax
19 | }
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:98:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 96 |
 97 |   @Argument(label: "bits")
 98 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:101:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
101 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
102 |
103 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:127:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
125 |
126 |   @Argument(label: "bits")
127 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:130:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
130 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
131 |
132 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:156:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
154 |
155 |   @Argument(label: "bits")
156 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:159:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
159 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
160 |
161 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
[261/273] Compiling MMIOMacros BitFieldMacro.swift
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:72:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 70 |
 71 |   @Argument(label: "bits")
 72 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:74:7: warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 72 |   var bitRanges: [BitRange]
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 75 |
 76 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/Arguments/BitFieldTypeProjection.swift:17:8: note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
15 | import SwiftSyntaxMacros
16 |
17 | struct BitFieldTypeProjection {
   |        `- note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
18 |   var expression: ExprSyntax
19 | }
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:98:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 96 |
 97 |   @Argument(label: "bits")
 98 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:101:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
101 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
102 |
103 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:127:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
125 |
126 |   @Argument(label: "bits")
127 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:130:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
130 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
131 |
132 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:156:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
154 |
155 |   @Argument(label: "bits")
156 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:159:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
159 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
160 |
161 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
[262/273] Compiling MMIOMacros BitFieldDescription.swift
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:72:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 70 |
 71 |   @Argument(label: "bits")
 72 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:74:7: warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 72 |   var bitRanges: [BitRange]
 73 |
 74 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property 'projectedType' of 'Sendable'-conforming struct 'ReservedMacro' has non-sendable type 'BitFieldTypeProjection?'; this is an error in the Swift 6 language mode
 75 |
 76 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/Arguments/BitFieldTypeProjection.swift:17:8: note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
15 | import SwiftSyntaxMacros
16 |
17 | struct BitFieldTypeProjection {
   |        `- note: consider making struct 'BitFieldTypeProjection' conform to the 'Sendable' protocol
18 |   var expression: ExprSyntax
19 | }
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:98:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 96 |
 97 |   @Argument(label: "bits")
 98 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:101:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
 99 |
100 |   @Argument(label: "as")
101 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadWriteMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
102 |
103 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:127:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
125 |
126 |   @Argument(label: "bits")
127 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:130:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
128 |
129 |   @Argument(label: "as")
130 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'ReadOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
131 |
132 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:156:7: warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
154 |
155 |   @Argument(label: "bits")
156 |   var bitRanges: [BitRange]
    |       `- warning: stored property '_bitRanges' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<OneOrMore<BitRange>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/BitFieldMacro.swift:159:7: warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
157 |
158 |   @Argument(label: "as")
159 |   var projectedType: BitFieldTypeProjection?
    |       `- warning: stored property '_projectedType' of 'Sendable'-conforming struct 'WriteOnlyMacro' has non-sendable type 'Argument<ZeroOrOne<BitFieldTypeProjection>>'; this is an error in the Swift 6 language mode
160 |
161 |   mutating func update(
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
[263/273] Compiling MMIOMacros DeclSyntaxProtocol.swift
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:21:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 19 |
 20 | extension AccessorDeclSyntax: DiagnosableDeclSyntaxProtocol {
 21 |   static var declTypeName = "accessor"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |   var introducerKeyword: TokenSyntax { self.accessorSpecifier }
 23 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:31:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 | extension AssociatedTypeDeclSyntax: DiagnosableDeclSyntaxProtocol {
 31 |   static var declTypeName = "associated type"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.associatedtypeKeyword }
 33 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:41:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 | extension DeinitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 41 |   static var declTypeName = "deinitializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |   var introducerKeyword: TokenSyntax { self.deinitKeyword }
 43 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:46:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 | extension EditorPlaceholderDeclSyntax: DiagnosableDeclSyntaxProtocol {
 46 |   static var declTypeName = "editor placeholder"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   var introducerKeyword: TokenSyntax { self.placeholder }
 48 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:66:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 |
 65 | extension FunctionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 66 |   static var declTypeName = "function"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.funcKeyword }
 68 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:71:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |
 70 | extension IfConfigDeclSyntax: DiagnosableDeclSyntaxProtocol {
 71 |   static var declTypeName = "if config"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax {
 73 |     self.clauses.first?.poundKeyword ?? .poundToken()
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:78:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 | extension ImportDeclSyntax: DiagnosableDeclSyntaxProtocol {
 78 |   static var declTypeName = "import"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.importKeyword }
 80 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:83:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |
 82 | extension InitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 83 |   static var declTypeName = "initializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.initKeyword }
 85 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:88:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 | extension MacroDeclSyntax: DiagnosableDeclSyntaxProtocol {
 88 |   static var declTypeName = "macro"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroKeyword }
 90 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:93:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | extension MacroExpansionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 93 |   static var declTypeName = "macro expansion"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroName }
 95 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:98:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 |
 97 | extension MissingDeclSyntax: DiagnosableDeclSyntaxProtocol {
 98 |   static var declTypeName = "missing"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |   var introducerKeyword: TokenSyntax { self.placeholder }
100 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:103:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
101 |
102 | extension OperatorDeclSyntax: DiagnosableDeclSyntaxProtocol {
103 |   static var declTypeName = "operator"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |   var introducerKeyword: TokenSyntax { self.operatorKeyword }
105 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:108:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 |
107 | extension PoundSourceLocationSyntax: DiagnosableDeclSyntaxProtocol {
108 |   static var declTypeName = "pound source location"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |   var introducerKeyword: TokenSyntax { self.poundSourceLocation }
110 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:113:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
111 |
112 | extension PrecedenceGroupDeclSyntax: DiagnosableDeclSyntaxProtocol {
113 |   static var declTypeName = "precedence group"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |   var introducerKeyword: TokenSyntax { self.precedencegroupKeyword }
115 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:128:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | extension SubscriptDeclSyntax: DiagnosableDeclSyntaxProtocol {
128 |   static var declTypeName = "subscript"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |   var introducerKeyword: TokenSyntax { self.subscriptKeyword }
130 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:133:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | extension TypeAliasDeclSyntax: DiagnosableDeclSyntaxProtocol {
133 |   static var declTypeName = "type alias"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |   var introducerKeyword: TokenSyntax { self.typealiasKeyword }
135 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:138:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | extension VariableDeclSyntax: DiagnosableDeclSyntaxProtocol {
138 |   static var declTypeName = "variable"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[264/273] Compiling MMIOMacros ErrorDiagnostic.swift
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:21:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 19 |
 20 | extension AccessorDeclSyntax: DiagnosableDeclSyntaxProtocol {
 21 |   static var declTypeName = "accessor"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |   var introducerKeyword: TokenSyntax { self.accessorSpecifier }
 23 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:31:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 | extension AssociatedTypeDeclSyntax: DiagnosableDeclSyntaxProtocol {
 31 |   static var declTypeName = "associated type"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.associatedtypeKeyword }
 33 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:41:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 | extension DeinitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 41 |   static var declTypeName = "deinitializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |   var introducerKeyword: TokenSyntax { self.deinitKeyword }
 43 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:46:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 | extension EditorPlaceholderDeclSyntax: DiagnosableDeclSyntaxProtocol {
 46 |   static var declTypeName = "editor placeholder"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   var introducerKeyword: TokenSyntax { self.placeholder }
 48 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:66:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 |
 65 | extension FunctionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 66 |   static var declTypeName = "function"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.funcKeyword }
 68 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:71:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |
 70 | extension IfConfigDeclSyntax: DiagnosableDeclSyntaxProtocol {
 71 |   static var declTypeName = "if config"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax {
 73 |     self.clauses.first?.poundKeyword ?? .poundToken()
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:78:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 | extension ImportDeclSyntax: DiagnosableDeclSyntaxProtocol {
 78 |   static var declTypeName = "import"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.importKeyword }
 80 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:83:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |
 82 | extension InitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 83 |   static var declTypeName = "initializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.initKeyword }
 85 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:88:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 | extension MacroDeclSyntax: DiagnosableDeclSyntaxProtocol {
 88 |   static var declTypeName = "macro"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroKeyword }
 90 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:93:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | extension MacroExpansionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 93 |   static var declTypeName = "macro expansion"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroName }
 95 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:98:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 |
 97 | extension MissingDeclSyntax: DiagnosableDeclSyntaxProtocol {
 98 |   static var declTypeName = "missing"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |   var introducerKeyword: TokenSyntax { self.placeholder }
100 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:103:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
101 |
102 | extension OperatorDeclSyntax: DiagnosableDeclSyntaxProtocol {
103 |   static var declTypeName = "operator"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |   var introducerKeyword: TokenSyntax { self.operatorKeyword }
105 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:108:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 |
107 | extension PoundSourceLocationSyntax: DiagnosableDeclSyntaxProtocol {
108 |   static var declTypeName = "pound source location"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |   var introducerKeyword: TokenSyntax { self.poundSourceLocation }
110 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:113:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
111 |
112 | extension PrecedenceGroupDeclSyntax: DiagnosableDeclSyntaxProtocol {
113 |   static var declTypeName = "precedence group"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |   var introducerKeyword: TokenSyntax { self.precedencegroupKeyword }
115 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:128:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | extension SubscriptDeclSyntax: DiagnosableDeclSyntaxProtocol {
128 |   static var declTypeName = "subscript"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |   var introducerKeyword: TokenSyntax { self.subscriptKeyword }
130 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:133:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | extension TypeAliasDeclSyntax: DiagnosableDeclSyntaxProtocol {
133 |   static var declTypeName = "type alias"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |   var introducerKeyword: TokenSyntax { self.typealiasKeyword }
135 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:138:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | extension VariableDeclSyntax: DiagnosableDeclSyntaxProtocol {
138 |   static var declTypeName = "variable"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[265/273] Compiling MMIOMacros ExpansionError.swift
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:21:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 19 |
 20 | extension AccessorDeclSyntax: DiagnosableDeclSyntaxProtocol {
 21 |   static var declTypeName = "accessor"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |   var introducerKeyword: TokenSyntax { self.accessorSpecifier }
 23 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:31:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 | extension AssociatedTypeDeclSyntax: DiagnosableDeclSyntaxProtocol {
 31 |   static var declTypeName = "associated type"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.associatedtypeKeyword }
 33 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:41:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 | extension DeinitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 41 |   static var declTypeName = "deinitializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |   var introducerKeyword: TokenSyntax { self.deinitKeyword }
 43 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:46:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 | extension EditorPlaceholderDeclSyntax: DiagnosableDeclSyntaxProtocol {
 46 |   static var declTypeName = "editor placeholder"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   var introducerKeyword: TokenSyntax { self.placeholder }
 48 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:66:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 |
 65 | extension FunctionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 66 |   static var declTypeName = "function"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.funcKeyword }
 68 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:71:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |
 70 | extension IfConfigDeclSyntax: DiagnosableDeclSyntaxProtocol {
 71 |   static var declTypeName = "if config"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax {
 73 |     self.clauses.first?.poundKeyword ?? .poundToken()
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:78:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 | extension ImportDeclSyntax: DiagnosableDeclSyntaxProtocol {
 78 |   static var declTypeName = "import"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.importKeyword }
 80 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:83:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |
 82 | extension InitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 83 |   static var declTypeName = "initializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.initKeyword }
 85 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:88:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 | extension MacroDeclSyntax: DiagnosableDeclSyntaxProtocol {
 88 |   static var declTypeName = "macro"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroKeyword }
 90 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:93:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | extension MacroExpansionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 93 |   static var declTypeName = "macro expansion"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroName }
 95 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:98:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 |
 97 | extension MissingDeclSyntax: DiagnosableDeclSyntaxProtocol {
 98 |   static var declTypeName = "missing"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |   var introducerKeyword: TokenSyntax { self.placeholder }
100 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:103:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
101 |
102 | extension OperatorDeclSyntax: DiagnosableDeclSyntaxProtocol {
103 |   static var declTypeName = "operator"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |   var introducerKeyword: TokenSyntax { self.operatorKeyword }
105 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:108:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 |
107 | extension PoundSourceLocationSyntax: DiagnosableDeclSyntaxProtocol {
108 |   static var declTypeName = "pound source location"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |   var introducerKeyword: TokenSyntax { self.poundSourceLocation }
110 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:113:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
111 |
112 | extension PrecedenceGroupDeclSyntax: DiagnosableDeclSyntaxProtocol {
113 |   static var declTypeName = "precedence group"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |   var introducerKeyword: TokenSyntax { self.precedencegroupKeyword }
115 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:128:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | extension SubscriptDeclSyntax: DiagnosableDeclSyntaxProtocol {
128 |   static var declTypeName = "subscript"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |   var introducerKeyword: TokenSyntax { self.subscriptKeyword }
130 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:133:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | extension TypeAliasDeclSyntax: DiagnosableDeclSyntaxProtocol {
133 |   static var declTypeName = "type alias"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |   var introducerKeyword: TokenSyntax { self.typealiasKeyword }
135 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:138:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | extension VariableDeclSyntax: DiagnosableDeclSyntaxProtocol {
138 |   static var declTypeName = "variable"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[266/273] Compiling MMIOMacros MacroContext.swift
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:21:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 19 |
 20 | extension AccessorDeclSyntax: DiagnosableDeclSyntaxProtocol {
 21 |   static var declTypeName = "accessor"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |   var introducerKeyword: TokenSyntax { self.accessorSpecifier }
 23 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:31:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 | extension AssociatedTypeDeclSyntax: DiagnosableDeclSyntaxProtocol {
 31 |   static var declTypeName = "associated type"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.associatedtypeKeyword }
 33 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:41:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 | extension DeinitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 41 |   static var declTypeName = "deinitializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |   var introducerKeyword: TokenSyntax { self.deinitKeyword }
 43 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:46:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 | extension EditorPlaceholderDeclSyntax: DiagnosableDeclSyntaxProtocol {
 46 |   static var declTypeName = "editor placeholder"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   var introducerKeyword: TokenSyntax { self.placeholder }
 48 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:66:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 |
 65 | extension FunctionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 66 |   static var declTypeName = "function"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.funcKeyword }
 68 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:71:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |
 70 | extension IfConfigDeclSyntax: DiagnosableDeclSyntaxProtocol {
 71 |   static var declTypeName = "if config"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax {
 73 |     self.clauses.first?.poundKeyword ?? .poundToken()
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:78:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 | extension ImportDeclSyntax: DiagnosableDeclSyntaxProtocol {
 78 |   static var declTypeName = "import"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.importKeyword }
 80 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:83:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |
 82 | extension InitializerDeclSyntax: DiagnosableDeclSyntaxProtocol {
 83 |   static var declTypeName = "initializer"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.initKeyword }
 85 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:88:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 | extension MacroDeclSyntax: DiagnosableDeclSyntaxProtocol {
 88 |   static var declTypeName = "macro"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroKeyword }
 90 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:93:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | extension MacroExpansionDeclSyntax: DiagnosableDeclSyntaxProtocol {
 93 |   static var declTypeName = "macro expansion"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' 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 |   var introducerKeyword: TokenSyntax { self.macroName }
 95 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:98:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 |
 97 | extension MissingDeclSyntax: DiagnosableDeclSyntaxProtocol {
 98 |   static var declTypeName = "missing"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |   var introducerKeyword: TokenSyntax { self.placeholder }
100 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:103:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
101 |
102 | extension OperatorDeclSyntax: DiagnosableDeclSyntaxProtocol {
103 |   static var declTypeName = "operator"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |   var introducerKeyword: TokenSyntax { self.operatorKeyword }
105 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:108:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 |
107 | extension PoundSourceLocationSyntax: DiagnosableDeclSyntaxProtocol {
108 |   static var declTypeName = "pound source location"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |   var introducerKeyword: TokenSyntax { self.poundSourceLocation }
110 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:113:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
111 |
112 | extension PrecedenceGroupDeclSyntax: DiagnosableDeclSyntaxProtocol {
113 |   static var declTypeName = "precedence group"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |   var introducerKeyword: TokenSyntax { self.precedencegroupKeyword }
115 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:128:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | extension SubscriptDeclSyntax: DiagnosableDeclSyntaxProtocol {
128 |   static var declTypeName = "subscript"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |   var introducerKeyword: TokenSyntax { self.subscriptKeyword }
130 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:133:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | extension TypeAliasDeclSyntax: DiagnosableDeclSyntaxProtocol {
133 |   static var declTypeName = "type alias"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |   var introducerKeyword: TokenSyntax { self.typealiasKeyword }
135 | }
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/DeclSyntaxProtocol.swift:138:14: warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | extension VariableDeclSyntax: DiagnosableDeclSyntaxProtocol {
138 |   static var declTypeName = "variable"
    |              |- warning: static property 'declTypeName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'declTypeName' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'declTypeName' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[267/273] Compiling MMIOMacros RegisterDescription.swift
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMacro.swift:33:14: warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension RegisterBankMacro: MMIOMemberMacro {
33 |   static var memberMacroSuppressParsingDiagnostics: Bool = false
   |              |- warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'memberMacroSuppressParsingDiagnostics' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'memberMacroSuppressParsingDiagnostics' with '@MainActor' 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 |
35 |   func expansion(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:81:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 79 | public struct RegisterBankScalarMemberMacro {
 80 |   @Argument(label: "offset")
 81 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 82 | }
 83 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:124:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
122 | public struct RegisterBankArrayMemberMacro {
123 |   @Argument(label: "offset")
124 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
125 |   @Argument(label: "stride")
126 |   var stride: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:126:7: warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
124 |   var offset: Int
125 |   @Argument(label: "stride")
126 |   var stride: Int
    |       `- warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
127 |   @Argument(label: "count")
128 |   var count: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:128:7: warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
126 |   var stride: Int
127 |   @Argument(label: "count")
128 |   var count: Int
    |       `- warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
129 | }
130 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterMacro.swift:20:7: warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 18 | public struct RegisterMacro {
 19 |   @Argument(label: "bitWidth")
 20 |   var bitWidth: BitWidth
    |       `- warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 21 | }
 22 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
[268/273] Compiling MMIOMacros RegisterBankMacro.swift
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMacro.swift:33:14: warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension RegisterBankMacro: MMIOMemberMacro {
33 |   static var memberMacroSuppressParsingDiagnostics: Bool = false
   |              |- warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'memberMacroSuppressParsingDiagnostics' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'memberMacroSuppressParsingDiagnostics' with '@MainActor' 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 |
35 |   func expansion(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:81:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 79 | public struct RegisterBankScalarMemberMacro {
 80 |   @Argument(label: "offset")
 81 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 82 | }
 83 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:124:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
122 | public struct RegisterBankArrayMemberMacro {
123 |   @Argument(label: "offset")
124 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
125 |   @Argument(label: "stride")
126 |   var stride: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:126:7: warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
124 |   var offset: Int
125 |   @Argument(label: "stride")
126 |   var stride: Int
    |       `- warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
127 |   @Argument(label: "count")
128 |   var count: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:128:7: warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
126 |   var stride: Int
127 |   @Argument(label: "count")
128 |   var count: Int
    |       `- warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
129 | }
130 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterMacro.swift:20:7: warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 18 | public struct RegisterMacro {
 19 |   @Argument(label: "bitWidth")
 20 |   var bitWidth: BitWidth
    |       `- warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 21 | }
 22 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
[269/273] Compiling MMIOMacros RegisterBankMemberMacro.swift
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMacro.swift:33:14: warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension RegisterBankMacro: MMIOMemberMacro {
33 |   static var memberMacroSuppressParsingDiagnostics: Bool = false
   |              |- warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'memberMacroSuppressParsingDiagnostics' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'memberMacroSuppressParsingDiagnostics' with '@MainActor' 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 |
35 |   func expansion(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:81:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 79 | public struct RegisterBankScalarMemberMacro {
 80 |   @Argument(label: "offset")
 81 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 82 | }
 83 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:124:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
122 | public struct RegisterBankArrayMemberMacro {
123 |   @Argument(label: "offset")
124 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
125 |   @Argument(label: "stride")
126 |   var stride: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:126:7: warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
124 |   var offset: Int
125 |   @Argument(label: "stride")
126 |   var stride: Int
    |       `- warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
127 |   @Argument(label: "count")
128 |   var count: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:128:7: warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
126 |   var stride: Int
127 |   @Argument(label: "count")
128 |   var count: Int
    |       `- warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
129 | }
130 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterMacro.swift:20:7: warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 18 | public struct RegisterMacro {
 19 |   @Argument(label: "bitWidth")
 20 |   var bitWidth: BitWidth
    |       `- warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 21 | }
 22 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
[270/273] Compiling MMIOMacros RegisterMacro.swift
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMacro.swift:33:14: warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension RegisterBankMacro: MMIOMemberMacro {
33 |   static var memberMacroSuppressParsingDiagnostics: Bool = false
   |              |- warning: static property 'memberMacroSuppressParsingDiagnostics' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'memberMacroSuppressParsingDiagnostics' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'memberMacroSuppressParsingDiagnostics' with '@MainActor' 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 |
35 |   func expansion(
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:81:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 79 | public struct RegisterBankScalarMemberMacro {
 80 |   @Argument(label: "offset")
 81 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankScalarMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
 82 | }
 83 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:124:7: warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
122 | public struct RegisterBankArrayMemberMacro {
123 |   @Argument(label: "offset")
124 |   var offset: Int
    |       `- warning: stored property '_offset' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
125 |   @Argument(label: "stride")
126 |   var stride: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:126:7: warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
124 |   var offset: Int
125 |   @Argument(label: "stride")
126 |   var stride: Int
    |       `- warning: stored property '_stride' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
127 |   @Argument(label: "count")
128 |   var count: Int
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterBankMemberMacro.swift:128:7: warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
126 |   var stride: Int
127 |   @Argument(label: "count")
128 |   var count: Int
    |       `- warning: stored property '_count' of 'Sendable'-conforming struct 'RegisterBankArrayMemberMacro' has non-sendable type 'Argument<ExactlyOne<Int>>'; this is an error in the Swift 6 language mode
129 | }
130 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
/host/spi-builder-workspace/Sources/MMIOMacros/Macros/RegisterMacro.swift:20:7: warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 18 | public struct RegisterMacro {
 19 |   @Argument(label: "bitWidth")
 20 |   var bitWidth: BitWidth
    |       `- warning: stored property '_bitWidth' of 'Sendable'-conforming struct 'RegisterMacro' has non-sendable type 'Argument<ExactlyOne<BitWidth>>'; this is an error in the Swift 6 language mode
 21 | }
 22 |
/host/spi-builder-workspace/Sources/MMIOMacros/SwiftSyntaxExtensions/ArgumentParsing/Argument.swift:27:8: note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
25 |
26 | @propertyWrapper
27 | struct Argument<Container: ArgumentContainer>: ArgumentProtocol {
   |        `- note: consider making generic struct 'Argument' conform to the 'Sendable' protocol
28 |   var label: String
29 |   var container: Container?
[271/274] Wrapping AST for MMIOMacros for debugging
[272/274] Write Objects.LinkFileList
[273/274] Linking MMIOMacros-tool
[275/282] Compiling MMIO MMIOInterposer.swift
[276/283] Compiling MMIO Register.swift
[277/283] Compiling MMIO MMIOMacros.swift
[278/283] Compiling MMIO RegisterStorage.swift
[279/283] Compiling MMIO RegisterArray.swift
[280/283] Compiling MMIO BitFieldProjectable.swift
[281/283] Compiling MMIO RegisterValue.swift
[282/283] Compiling MMIO BitField.swift
[283/283] Emitting module MMIO
Build complete! (100.89s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "509.0.2",
            "upper_bound" : "510.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "swift-mmio",
  "name" : "swift-mmio",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "MMIO",
      "targets" : [
        "MMIO"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "MMIOMacros",
      "targets" : [
        "MMIOMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MMIOVolatile",
      "module_type" : "SystemLibraryTarget",
      "name" : "MMIOVolatile",
      "path" : "Sources/MMIOVolatile",
      "product_memberships" : [
        "MMIO"
      ],
      "sources" : [
      ],
      "type" : "system-target"
    },
    {
      "c99name" : "MMIOUtilitiesTests",
      "module_type" : "SwiftTarget",
      "name" : "MMIOUtilitiesTests",
      "path" : "Tests/MMIOUtilitiesTests",
      "sources" : [
        "LLVMDiagnostics/LLVMParsingTests.swift",
        "ParserTests.swift",
        "StringInterpolation+HexTests.swift"
      ],
      "target_dependencies" : [
        "MMIOUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MMIOUtilities",
      "module_type" : "SwiftTarget",
      "name" : "MMIOUtilities",
      "path" : "Sources/MMIOUtilities",
      "product_memberships" : [
        "MMIO",
        "MMIOMacros"
      ],
      "sources" : [
        "LLVMDiagnostics/LLVMDiagnostic.swift",
        "LLVMDiagnostics/LLVMDiagnosticKind.swift",
        "LLVMDiagnostics/Parser+LLVMDiagnostic.swift",
        "Parser+Integer.swift",
        "Parser.swift",
        "StringInterpolation+Hex.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MMIOTests",
      "module_type" : "SwiftTarget",
      "name" : "MMIOTests",
      "path" : "Tests/MMIOTests",
      "sources" : [
        "BitFieldProjectableTests.swift",
        "BitFieldTests.swift",
        "ExpansionTypeCheckTests.swift"
      ],
      "target_dependencies" : [
        "MMIO",
        "MMIOUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MMIOMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "MMIOMacrosTests",
      "path" : "Tests/MMIOMacrosTests",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftSyntaxMacros",
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "Macros/ArgumentParsing/BitRangeTests.swift",
        "Macros/ArgumentParsing/ExpressibleByExprSyntaxTests.swift",
        "Macros/BitFieldMacroTests.swift",
        "Macros/RegisterBankAndOffsetMacroTests.swift",
        "Macros/RegisterBankMacroTests.swift",
        "Macros/RegisterBankOffsetMacroTests.swift",
        "Macros/RegisterMacroTests.swift",
        "SwiftSyntaxExtensions/ArgumentParsing/ParsableMacroTests.swift",
        "SwiftSyntaxExtensions/PatternBindingSyntaxTests.swift",
        "SwiftSyntaxExtensions/SyntaxStringInterpolationTests.swift",
        "SwiftSyntaxExtensions/TestUtilities.swift",
        "SwiftSyntaxExtensions/VariableDeclSyntaxTests.swift",
        "SwiftSyntaxExtensions/WithAttributesSyntaxTests.swift",
        "SwiftSyntaxExtensions/WithModifiersSyntaxTests.swift"
      ],
      "target_dependencies" : [
        "MMIOMacros",
        "MMIOUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MMIOMacros",
      "module_type" : "SwiftTarget",
      "name" : "MMIOMacros",
      "path" : "Sources/MMIOMacros",
      "product_dependencies" : [
        "SwiftCompilerPlugin",
        "SwiftDiagnostics",
        "SwiftOperators",
        "SwiftSyntax",
        "SwiftSyntaxBuilder",
        "SwiftSyntaxMacroExpansion",
        "SwiftSyntaxMacros"
      ],
      "product_memberships" : [
        "MMIO",
        "MMIOMacros"
      ],
      "sources" : [
        "CompilerPluginMain.swift",
        "Macros/Arguments/BitFieldTypeProjection.swift",
        "Macros/Arguments/BitRange.swift",
        "Macros/Arguments/BitWidth.swift",
        "Macros/Arguments/ExprSyntax+ExpressibleByExprSyntax.swift",
        "Macros/Arguments/Int+ExpressibleByExprSyntax.swift",
        "Macros/BitFieldMacro.swift",
        "Macros/Descriptions/BitFieldDescription.swift",
        "Macros/Descriptions/RegisterDescription.swift",
        "Macros/RegisterBankMacro.swift",
        "Macros/RegisterBankMemberMacro.swift",
        "Macros/RegisterMacro.swift",
        "SwiftSyntaxExtensions/ArgumentParsing/Argument.swift",
        "SwiftSyntaxExtensions/ArgumentParsing/ArgumentContainer.swift",
        "SwiftSyntaxExtensions/ArgumentParsing/ExpressibleByExprSyntax.swift",
        "SwiftSyntaxExtensions/ArgumentParsing/ParsableMacro.swift",
        "SwiftSyntaxExtensions/DeclSyntaxProtocol.swift",
        "SwiftSyntaxExtensions/Diagnostics/ErrorDiagnostic.swift",
        "SwiftSyntaxExtensions/Diagnostics/ExpansionError.swift",
        "SwiftSyntaxExtensions/Diagnostics/MacroContext.swift",
        "SwiftSyntaxExtensions/IntegerLiteralExprSyntax.swift",
        "SwiftSyntaxExtensions/MacroWrappers/MMIOAccessorMacro.swift",
        "SwiftSyntaxExtensions/MacroWrappers/MMIOExtensionMacro.swift",
        "SwiftSyntaxExtensions/MacroWrappers/MMIOMemberAttributeMacro.swift",
        "SwiftSyntaxExtensions/MacroWrappers/MMIOMemberMacro.swift",
        "SwiftSyntaxExtensions/PatternBindingSyntax.swift",
        "SwiftSyntaxExtensions/SyntaxStringInterpolation.swift",
        "SwiftSyntaxExtensions/VariableDeclSyntax.swift",
        "SwiftSyntaxExtensions/WithAttributesSyntax.swift",
        "SwiftSyntaxExtensions/WithModifiersSyntax.swift"
      ],
      "target_dependencies" : [
        "MMIOUtilities"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "MMIOFileCheckTests",
      "module_type" : "SwiftTarget",
      "name" : "MMIOFileCheckTests",
      "path" : "Tests/MMIOFileCheckTests",
      "sources" : [
        "FileCheck/FileCheckDirective.swift",
        "FileCheck/SimpleFileCheck.swift",
        "MMIOFileCheckTestCase.swift",
        "ShellCommand.swift"
      ],
      "target_dependencies" : [
        "MMIOUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MMIO",
      "module_type" : "SwiftTarget",
      "name" : "MMIO",
      "path" : "Sources/MMIO",
      "product_memberships" : [
        "MMIO"
      ],
      "sources" : [
        "BitField.swift",
        "BitFieldProjectable.swift",
        "MMIOInterposer.swift",
        "MMIOMacros.swift",
        "Register.swift",
        "RegisterArray.swift",
        "RegisterStorage.swift",
        "RegisterValue.swift"
      ],
      "target_dependencies" : [
        "MMIOMacros",
        "MMIOVolatile"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.