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.1 for Linux on 28 Apr 2025 08:55:25 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.1-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

    |                     |- note: add '@MainActor' to make static property 'octalDigit' part of global actor 'MainActor'
    |                     `- 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: add '@MainActor' to make static property 'decimalDigit' part of global actor 'MainActor'
    |                     `- 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: add '@MainActor' to make static property 'hexadecimalDigit' part of global actor 'MainActor'
    |                     `- 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 |
[31/51] Compiling MMIOUtilities Parser.swift
[32/51] Emitting module MMIOUtilities
/host/spi-builder-workspace/Sources/MMIOUtilities/LLVMDiagnostics/Parser+LLVMDiagnostic.swift:13:14: warning: static property 'llvmDiagnosticInteger' 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
11 |
12 | extension Parser where Input == Substring, Output == Int {
13 |   static let llvmDiagnosticInteger = Self { input in
   |              |- warning: static property 'llvmDiagnosticInteger' 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: add '@MainActor' to make static property 'llvmDiagnosticInteger' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     var match = 0
15 |     var index = input.startIndex
/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/LLVMDiagnostics/Parser+LLVMDiagnostic.swift:32:14: warning: static property 'llvmDiagnosticKind' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, LLVMDiagnosticKind>' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | extension Parser where Input == Substring, Output == LLVMDiagnosticKind {
32 |   static let llvmDiagnosticKind = Parser.cases()
   |              |- warning: static property 'llvmDiagnosticKind' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, LLVMDiagnosticKind>' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'llvmDiagnosticKind' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
/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/LLVMDiagnostics/Parser+LLVMDiagnostic.swift:55:21: warning: static property 'llvmDiagnostics' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, [LLVMDiagnostic]>' may have shared mutable state; this is an error in the Swift 6 language mode
53 |   }
54 |
55 |   public static let llvmDiagnostics = Self
   |                     |- warning: static property 'llvmDiagnostics' is not concurrency-safe because non-'Sendable' type 'Parser<Substring, [LLVMDiagnostic]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'llvmDiagnostics' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |     .llvmDiagnostic.oneOrMore(separatedBy: "\n")
57 | }
/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: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: add '@MainActor' to make static property 'swiftInteger' part of global actor 'MainActor'
    |                     `- 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: add '@MainActor' to make static property 'binaryDigit' part of global actor 'MainActor'
    |                     `- 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: add '@MainActor' to make static property 'octalDigit' part of global actor 'MainActor'
    |                     `- 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: add '@MainActor' to make static property 'decimalDigit' part of global actor 'MainActor'
    |                     `- 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: add '@MainActor' to make static property 'hexadecimalDigit' part of global actor 'MainActor'
    |                     `- 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 LLVMDiagnostic.swift
[34/52] Compiling MMIOUtilities StringInterpolation+Hex.swift
[35/52] Compiling MMIOUtilities Parser.swift
[36/53] Wrapping AST for SwiftSyntax509 for debugging
[38/98] Wrapping AST for MMIOUtilities for debugging
[40/98] Compiling SwiftSyntax AbsolutePosition.swift
[41/98] Compiling SwiftSyntax Assert.swift
[42/98] Compiling SwiftSyntax BumpPtrAllocator.swift
[43/98] Compiling SwiftSyntax CommonAncestor.swift
[44/98] Compiling SwiftSyntax Convenience.swift
[45/98] Compiling SwiftSyntax MemoryLayout.swift
[46/98] Compiling SwiftSyntax MissingNodeInitializers.swift
[47/98] Compiling SwiftSyntax RawSyntax.swift
[48/98] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[49/98] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[50/98] Compiling SwiftSyntax RawSyntaxTokenView.swift
[51/98] Compiling SwiftSyntax SourceLength.swift
[52/98] Compiling SwiftSyntax SourceLocation.swift
[53/98] Compiling SwiftSyntax SourcePresence.swift
[54/104] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[55/104] Compiling SwiftSyntax Syntax.swift
[56/104] Compiling SwiftSyntax SyntaxArena.swift
[57/104] Compiling SwiftSyntax SyntaxChildren.swift
[58/104] Compiling SwiftSyntax SyntaxCollection.swift
[59/104] Compiling SwiftSyntax SyntaxData.swift
[60/104] Emitting module SwiftSyntax
[61/104] Compiling SwiftSyntax SyntaxText.swift
[62/104] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[63/104] Compiling SwiftSyntax TokenDiagnostic.swift
[64/104] Compiling SwiftSyntax TokenSyntax.swift
[65/104] Compiling SwiftSyntax Trivia.swift
[66/104] Compiling SwiftSyntax Utils.swift
[67/104] Compiling SwiftSyntax ChildNameForKeyPath.swift
[68/104] Compiling SwiftSyntax Keyword.swift
[69/104] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[70/104] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[71/104] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[72/104] Compiling SwiftSyntax SyntaxBaseNodes.swift
[73/104] Compiling SwiftSyntax SyntaxDeclNodes.swift
[74/104] Compiling SwiftSyntax SyntaxExprNodes.swift
[75/104] Compiling SwiftSyntax SyntaxNodes.swift
[76/104] Compiling SwiftSyntax SyntaxPatternNodes.swift
[77/104] Compiling SwiftSyntax SyntaxStmtNodes.swift
[78/104] Compiling SwiftSyntax SyntaxTypeNodes.swift
[79/104] Compiling SwiftSyntax SyntaxCollections.swift
[80/104] Compiling SwiftSyntax SyntaxEnum.swift
[81/104] Compiling SwiftSyntax SyntaxKind.swift
[82/104] Compiling SwiftSyntax SyntaxRewriter.swift
[83/104] Compiling SwiftSyntax SyntaxTraits.swift
[84/104] Compiling SwiftSyntax SyntaxTransform.swift
[85/104] Compiling SwiftSyntax SyntaxVisitor.swift
[86/104] Compiling SwiftSyntax TokenKind.swift
[87/104] Compiling SwiftSyntax Tokens.swift
[88/104] Compiling SwiftSyntax TriviaPieces.swift
[89/104] Compiling SwiftSyntax RawSyntaxNodes.swift
[90/104] Compiling SwiftSyntax RawSyntaxValidation.swift
[91/105] Wrapping AST for SwiftSyntax for debugging
[93/156] Compiling SwiftDiagnostics Diagnostic.swift
[94/156] Emitting module SwiftDiagnostics
[95/156] Compiling SwiftDiagnostics Convenience.swift
[96/156] Compiling SwiftDiagnostics Note.swift
[97/156] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[98/156] Compiling SwiftBasicFormat Syntax+Extensions.swift
[99/156] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[100/156] Compiling SwiftDiagnostics Message.swift
[101/156] Emitting module SwiftBasicFormat
[102/156] Compiling SwiftBasicFormat BasicFormat.swift
[103/157] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[104/157] Compiling SwiftDiagnostics FixIt.swift
[105/157] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[107/158] Wrapping AST for SwiftBasicFormat for debugging
[108/158] Wrapping AST for SwiftDiagnostics for debugging
[110/158] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[111/158] Compiling SwiftParser StringLiterals.swift
[112/158] Compiling SwiftParser SwiftParserCompatibility.swift
[113/158] Compiling SwiftParser SyntaxUtils.swift
[114/158] Compiling SwiftParser TokenConsumer.swift
[115/158] Compiling SwiftParser TokenPrecedence.swift
[116/158] Compiling SwiftParser TokenSpec.swift
[117/158] Compiling SwiftParser TokenSpecSet.swift
[118/158] Compiling SwiftParser TopLevel.swift
[119/158] Compiling SwiftParser TriviaParser.swift
[120/163] Compiling SwiftParser Lexer.swift
[121/163] Compiling SwiftParser RegexLiteralLexer.swift
[122/163] Compiling SwiftParser UnicodeScalarExtensions.swift
[123/163] Compiling SwiftParser Lookahead.swift
[124/163] Compiling SwiftParser LoopProgressCondition.swift
[125/163] Compiling SwiftParser Parser.swift
[126/163] Compiling SwiftParser Patterns.swift
[127/163] Compiling SwiftParser Recovery.swift
[128/163] Compiling SwiftParser Specifiers.swift
[129/163] Compiling SwiftParser Statements.swift
[130/163] Compiling SwiftParser Modifiers.swift
[131/163] Compiling SwiftParser Names.swift
[132/163] Compiling SwiftParser Nominals.swift
[133/163] Compiling SwiftParser Parameters.swift
[134/163] Compiling SwiftParser ParseSourceFile.swift
[135/163] Emitting module SwiftParser
[136/163] Compiling SwiftParser Attributes.swift
[137/163] Compiling SwiftParser Availability.swift
[138/163] Compiling SwiftParser CharacterInfo.swift
[139/163] Compiling SwiftParser CollectionNodes+Parsable.swift
[140/163] Compiling SwiftParser Declarations.swift
[141/163] Compiling SwiftParser Directives.swift
[142/163] Compiling SwiftParser ExperimentalFeatures.swift
[143/163] Compiling SwiftParser Expressions.swift
[144/163] Compiling SwiftParser IncrementalParseTransition.swift
[145/163] Compiling SwiftParser Cursor.swift
[146/163] Compiling SwiftParser Lexeme.swift
[147/163] Compiling SwiftParser LexemeSequence.swift
[148/163] Compiling SwiftParser Types.swift
[149/163] Compiling SwiftParser IsLexerClassified.swift
[150/163] Compiling SwiftParser LayoutNodes+Parsable.swift
[151/163] Compiling SwiftParser Parser+TokenSpecSet.swift
[152/163] Compiling SwiftParser TokenSpecStaticMembers.swift
[153/164] Wrapping AST for SwiftParser for debugging
[155/187] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[156/188] Compiling SwiftOperators PrecedenceGroup.swift
[157/189] Compiling SwiftOperators OperatorTable.swift
[158/189] Compiling SwiftOperators PrecedenceGraph.swift
[159/189] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[160/189] Compiling SwiftOperators OperatorTable+Semantics.swift
[161/189] Compiling SwiftOperators OperatorError.swift
[162/189] Compiling SwiftOperators OperatorTable+Defaults.swift
[163/189] Compiling SwiftOperators Operator.swift
[164/189] Compiling SwiftOperators OperatorError+Diagnostics.swift
[165/189] Compiling SwiftOperators SyntaxSynthesis.swift
[166/189] Emitting module SwiftOperators
[167/189] Compiling SwiftOperators OperatorTable+Folding.swift
[168/190] Wrapping AST for SwiftOperators for debugging
[170/190] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[171/190] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[172/190] Compiling SwiftParserDiagnostics Utils.swift
[173/190] Emitting module SwiftParserDiagnostics
[174/190] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[175/190] Compiling SwiftParserDiagnostics PresenceUtils.swift
[180/190] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[181/190] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[182/191] Wrapping AST for SwiftParserDiagnostics for debugging
[184/205] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[185/205] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[186/206] Compiling SwiftSyntaxBuilder Indenter.swift
[187/206] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[188/206] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[189/206] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[190/206] Emitting module SwiftSyntaxBuilder
[191/206] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[192/206] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[193/206] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[194/206] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[195/206] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[196/206] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[197/206] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[198/206] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[199/221] Wrapping AST for SwiftSyntaxBuilder for debugging
[201/221] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[202/221] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[203/222] Compiling SwiftSyntaxMacros AccessorMacro.swift
[204/222] Compiling SwiftSyntaxMacros AttachedMacro.swift
[205/222] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[206/222] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[207/222] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[208/222] Compiling SwiftSyntaxMacros Macro+Format.swift
[209/222] Compiling SwiftSyntaxMacros Macro.swift
[210/222] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[211/222] Compiling SwiftSyntaxMacros MemberMacro.swift
[212/222] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[213/222] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[214/222] Emitting module SwiftSyntaxMacros
[215/222] Compiling SwiftSyntaxMacros PeerMacro.swift
[216/223] Wrapping AST for SwiftSyntaxMacros for debugging
[218/231] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[219/231] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[220/231] Emitting module SwiftSyntaxMacroExpansion
[221/231] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[222/231] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[223/231] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[224/231] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[225/231] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[226/232] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[228/239] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[229/239] Emitting module SwiftCompilerPluginMessageHandling
[230/239] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[231/239] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[232/239] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[233/239] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[234/239] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[235/240] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[237/242] Emitting module SwiftCompilerPlugin
[238/242] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[239/243] Wrapping AST for SwiftCompilerPlugin for debugging
[241/271] Compiling MMIOMacros IntegerLiteralExprSyntax.swift
[242/271] Compiling MMIOMacros MMIOAccessorMacro.swift
[243/271] Compiling MMIOMacros MMIOExtensionMacro.swift
[244/271] Compiling MMIOMacros MMIOMemberAttributeMacro.swift
[245/274] 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: add '@MainActor' to make static property 'memberMacroSuppressParsingDiagnostics' part of global actor 'MainActor'
   |              `- 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: add '@MainActor' to make var 'signatureCache' part of global actor 'MainActor'
    |             `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[246/274] Compiling MMIOMacros VariableDeclSyntax.swift
[247/274] Compiling MMIOMacros WithAttributesSyntax.swift
[248/274] Compiling MMIOMacros WithModifiersSyntax.swift
[249/274] 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: add '@MainActor' to make static property 'memberMacroSuppressParsingDiagnostics' part of global actor 'MainActor'
   |              `- 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?
[250/274] 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: add '@MainActor' to make static property 'memberMacroSuppressParsingDiagnostics' part of global actor 'MainActor'
   |              `- 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?
[251/274] 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: add '@MainActor' to make static property 'memberMacroSuppressParsingDiagnostics' part of global actor 'MainActor'
   |              `- 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?
[252/274] 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: add '@MainActor' to make static property 'memberMacroSuppressParsingDiagnostics' part of global actor 'MainActor'
   |              `- 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?
[253/274] 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: add '@MainActor' to make var 'signatureCache' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
[254/274] 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: add '@MainActor' to make var 'signatureCache' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
[255/274] 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: add '@MainActor' to make var 'signatureCache' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
[256/274] 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: add '@MainActor' to make var 'signatureCache' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   [AnyHashable: (String, AttributeListSyntax.Element)]()
 17 |
[257/274] Compiling MMIOMacros MMIOMemberMacro.swift
[258/274] Compiling MMIOMacros PatternBindingSyntax.swift
[259/274] Compiling MMIOMacros SyntaxStringInterpolation.swift
[260/274] 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[261/274] 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[262/274] 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[263/274] 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- 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: add '@MainActor' to make static property 'declTypeName' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   var introducerKeyword: TokenSyntax { self.bindingSpecifier }
140 | }
[264/274] 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?
[265/274] 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?
[266/274] 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?
[267/274] 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?
[268/274] Compiling MMIOMacros CompilerPluginMain.swift
[269/274] Compiling MMIOMacros BitFieldTypeProjection.swift
[270/274] Compiling MMIOMacros BitRange.swift
[271/274] Compiling MMIOMacros BitWidth.swift
[272/275] Wrapping AST for MMIOMacros for debugging
[273/275] Write Objects.LinkFileList
[274/275] Linking MMIOMacros-tool
[276/291] Compiling MMIO MMIOMacros.swift
[277/292] Compiling MMIO MMIOInterposer.swift
[278/292] Compiling MMIO RegisterStorage.swift
[280/293] Compiling MMIO RegisterValue.swift
[281/293] Compiling MMIO Register.swift
[282/293] Compiling MMIO RegisterArray.swift
[283/293] Compiling MMIO BitField.swift
[284/293] Compiling MMIO MMIOMacros.swift
[285/293] Compiling MMIO BitFieldProjectable.swift
[286/293] Compiling MMIO MMIOInterposer.swift
[287/293] Compiling MMIO Register.swift
[288/293] Compiling MMIO RegisterArray.swift
[289/293] Compiling MMIO RegisterValue.swift
[290/293] Compiling MMIO BitFieldProjectable.swift
[291/293] Emitting module MMIO
[292/293] Compiling MMIO BitField.swift
[293/293] Emitting module MMIO
Build complete! (119.60s)
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.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.