Build Information
Successful build of macro-codable-kit, reference main (4491fc
), with Swift 6.0 for Linux on 16 Dec 2024 02:51:47 UTC.
Swift 6 data race errors: 9
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.59.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mikhailmaslo/macro-codable-kit.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/mikhailmaslo/macro-codable-kit
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 4491fcd Replace decodeIfPresent with decode for singleValue (#10)
Cloned https://github.com/mikhailmaslo/macro-codable-kit.git
Revision (git rev-parse @):
4491fcda995fc0036d033cd1fd791bc1d35acf9e
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/mikhailmaslo/macro-codable-kit.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/mikhailmaslo/macro-codable-kit.git
https://github.com/mikhailmaslo/macro-codable-kit.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "510.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-syntax.git"
},
{
"identity" : "swift-format",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "510.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-format.git"
},
{
"identity" : "swift-macro-toolkit",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/stackotter/swift-macro-toolkit"
},
{
"identity" : "swift-macro-testing",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-macro-testing"
}
],
"manifest_display_name" : "macro-codable-kit",
"name" : "macro-codable-kit",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "MacroCodableKit",
"targets" : [
"MacroCodableKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Macro",
"targets" : [
"Macro"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "MacroCodableKitTests",
"module_type" : "SwiftTarget",
"name" : "MacroCodableKitTests",
"path" : "Tests/MacroCodableKitTests",
"product_dependencies" : [
"SwiftSyntaxMacrosTestSupport",
"MacroTesting"
],
"sources" : [
"AllOfCodable/AllOfCodableMacroTests.swift",
"AllOfCodable/AllOfDecodableMacroTests.swift",
"AllOfCodable/AllOfEncodableMacroTests.swift",
"AllOfCodable/AllOfMacroDecodingTests.swift",
"Annotations/AnnotationTests.swift",
"Annotations/Base64StrategyTests.swift",
"Annotations/DateValueStrategyTests.swift",
"Annotations/DefaultValueTests.swift",
"Annotations/Macro/AnnotationsMixMacroTests.swift",
"Annotations/Macro/CustomCodingMacroTests.swift",
"Annotations/Macro/DefaultValueMacroTests.swift",
"Annotations/Macro/DiagnosticTests.swift",
"Annotations/Macro/ValueStrategyMacroTests.swift",
"Annotations/SafeCodingArrayTests.swift",
"Annotations/SafeCodingDictionaryTests.swift",
"Codable/CodableMacroTests.swift",
"Codable/CodableTests.swift",
"Codable/DecodableMacroTests.swift",
"Codable/EncodableMacroTests.swift",
"Helpers/Misc.swift",
"OneOfCodable/OneOfCodableMacroTests.swift",
"OneOfCodable/OneOfDecodableMacroTests.swift",
"OneOfCodable/OneOfEncodableMacroTests.swift",
"OneOfCodable/OneOfMacroDecodingTests.swift"
],
"target_dependencies" : [
"Macro",
"MacroCodableKit"
],
"type" : "test"
},
{
"c99name" : "MacroCodableKit",
"module_type" : "SwiftTarget",
"name" : "MacroCodableKit",
"path" : "Sources/MacroCodableKit",
"product_memberships" : [
"MacroCodableKit"
],
"sources" : [
"Macros/AllOf.swift",
"Macros/Annotations.swift",
"Macros/Codable.swift",
"Macros/OneOf.swift",
"Misc/CustomCoding/CustomCodingDecoding.swift",
"Misc/CustomCoding/CustomCodingEncoding.swift",
"Misc/CustomCoding/Predefined/SafeDecoding/SafeDecoding+Array.swift",
"Misc/CustomCoding/Predefined/SafeDecoding/SafeDecoding+Dictionary.swift",
"Misc/CustomCoding/Predefined/SafeDecoding/SafeDecoding.swift",
"Misc/CustomCoding/Types/CustomCodingDecoding+Types.swift",
"Misc/CustomCoding/Types/CustomCodingEncoding+Types.swift",
"Misc/CustomDecodingName.swift",
"Misc/DefaultProviders/BoolFalse.swift",
"Misc/DefaultProviders/BoolTrue.swift",
"Misc/DefaultProviders/DoubleZero.swift",
"Misc/DefaultProviders/EmptyString.swift",
"Misc/DefaultProviders/IntZero.swift",
"Misc/DefaultValueStrategy.swift",
"Misc/OptionalProtocol.swift",
"Misc/ValueCodableStrategies/Base64Strategy.swift",
"Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift",
"Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift",
"Misc/ValueCodableStrategies/Date/RFC2822DateFormatterProvider.swift",
"Misc/ValueCodableStrategies/Date/RFC3339DateFormatterProvider.swift",
"Misc/ValueCodableStrategies/Date/TimestampedDate.swift",
"Misc/ValueCodableStrategies/Date/YearMonthDayDateFormatterProvider.swift",
"Misc/ValueCodableStrategy.swift"
],
"target_dependencies" : [
"Macro"
],
"type" : "library"
},
{
"c99name" : "Macro",
"module_type" : "SwiftTarget",
"name" : "Macro",
"path" : "Sources/Macro",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"MacroToolkit",
"SwiftFormat"
],
"product_memberships" : [
"MacroCodableKit",
"Macro"
],
"sources" : [
"Helpers/CodeBuilder+Helpers.swift",
"Helpers/Conformance+Helpers.swift",
"Helpers/DiagnosticMessage+Helpers.swift",
"Helpers/MacroToolkit+Helpers.swift",
"Helpers/MessageID+Helpers.swift",
"Helpers/String+Helpers.swift",
"Helpers/Type+Helpers.swift",
"Macro/AllOfCodable/AllOfCodable.swift",
"Macro/AllOfCodable/AllOfDecodableMacro.swift",
"Macro/AllOfCodable/AllOfEncodableMacro.swift",
"Macro/AllOfCodable/AllOfMacroBase.swift",
"Macro/Codable/CodableMacro.swift",
"Macro/Codable/CodableMacroBase.swift",
"Macro/Codable/DecodableMacro.swift",
"Macro/Codable/EncodableMacro.swift",
"Macro/CodingKey/CodingKey.swift",
"Macro/CodingKey/CodingKeyMacro.swift",
"Macro/CustomCoding/CustomCoding.swift",
"Macro/CustomCoding/CustomCodingMacro.swift",
"Macro/DefaultValue/DefaultValue.swift",
"Macro/DefaultValue/DefaultValueMacro.swift",
"Macro/OmitCoding/OmitCoding.swift",
"Macro/OmitCoding/OmitCodingMacro.swift",
"Macro/OneOfCodable/OneOfCodable.swift",
"Macro/OneOfCodable/OneOfDecodable.swift",
"Macro/OneOfCodable/OneOfEncodable.swift",
"Macro/OneOfCodable/OneOfMacroBase.Diagnostic.swift",
"Macro/OneOfCodable/OneOfMacroBase.Expander.swift",
"Macro/OneOfCodable/OneOfMacroBase.swift",
"Macro/ValueStrategy/ValueStrategy.swift",
"Macro/ValueStrategy/ValueStrategyMacro.swift",
"Misc/ClassDecl.swift",
"Misc/CodableBuilderFactory.swift",
"Misc/CodableBuilders/CodableBuildersMisc.swift",
"Misc/CodableBuilders/CodableBuildingData.swift",
"Misc/CodableBuilders/CodingKeysBuilder+Enum.swift",
"Misc/CodableBuilders/CodingKeysBuilder+Instance.swift",
"Misc/CodableBuilders/CodingKeysBuilder.swift",
"Misc/CodableBuilders/DecodableBuilder+Instance.swift",
"Misc/CodableBuilders/DecodableBuilder.swift",
"Misc/CodableBuilders/EncodableBuilder+Instance.swift",
"Misc/CodableBuilders/EncodableBuilder.swift",
"Misc/CodableBuilders/Variable+Diagnostic.swift",
"Misc/CodableBuilders/Variable+KnownAttributes.swift",
"Misc/CodeBuilder/CodeBuilder.swift",
"Misc/CodeBuilder/ExtensionBuilder.swift",
"Misc/CommonDiagnostic.swift",
"Misc/Conformance.swift",
"Misc/ConformanceDiagnosticChecker.swift",
"Misc/Diagnostic.swift",
"Misc/Instance.swift",
"Misc/InstanceExpander.swift",
"Misc/MacroCurrent.swift",
"Misc/SwiftFormatter.swift",
"Plugin.swift"
],
"type" : "macro"
}
],
"tools_version" : "5.9"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/pointfreeco/swift-macro-testing
Fetching https://github.com/stackotter/swift-macro-toolkit
Fetching https://github.com/apple/swift-syntax.git
Fetching https://github.com/apple/swift-format.git
[1/863] Fetching swift-macro-toolkit
[243/1499] Fetching swift-macro-toolkit, swift-macro-testing
[1500/12231] Fetching swift-macro-toolkit, swift-macro-testing, swift-format
Fetched https://github.com/apple/swift-format.git from cache (0.58s)
[1/67211] Fetching swift-syntax
Fetched https://github.com/stackotter/swift-macro-toolkit from cache (4.65s)
Fetched https://github.com/pointfreeco/swift-macro-testing from cache (4.65s)
Fetched https://github.com/apple/swift-syntax.git from cache (4.70s)
Computing version for https://github.com/apple/swift-format.git
Computed https://github.com/apple/swift-format.git at 509.0.0 (2.41s)
Fetching https://github.com/apple/swift-markdown.git
Fetching https://github.com/apple/swift-argument-parser.git
[1/6332] Fetching swift-markdown
[5890/18733] Fetching swift-markdown, swift-argument-parser
Fetched https://github.com/apple/swift-markdown.git from cache (0.51s)
[10913/12401] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser.git from cache (0.72s)
Computing version for https://github.com/apple/swift-markdown.git
Computed https://github.com/apple/swift-markdown.git at 0.5.0 (0.52s)
Fetching https://github.com/apple/swift-cmark.git
[1/17923] Fetching swift-cmark
Fetched https://github.com/apple/swift-cmark.git from cache (1.00s)
Computing version for https://github.com/apple/swift-cmark.git
Computed https://github.com/apple/swift-cmark.git at 0.5.0 (0.50s)
Computing version for https://github.com/stackotter/swift-macro-toolkit
Computed https://github.com/stackotter/swift-macro-toolkit at 0.3.1 (0.71s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 509.0.0 (0.68s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.5.0 (0.76s)
Computing version for https://github.com/pointfreeco/swift-macro-testing
Computed https://github.com/pointfreeco/swift-macro-testing at 0.5.2 (0.77s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing
[1/12458] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (2.44s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.17.6 (0.93s)
Creating working copy for https://github.com/pointfreeco/swift-macro-testing
Working copy of https://github.com/pointfreeco/swift-macro-testing resolved at 0.5.2
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 509.0.0
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-markdown.git
Working copy of https://github.com/apple/swift-markdown.git resolved at 0.5.0
Creating working copy for https://github.com/stackotter/swift-macro-toolkit
Working copy of https://github.com/stackotter/swift-macro-toolkit resolved at 0.3.1
Creating working copy for https://github.com/apple/swift-format.git
Working copy of https://github.com/apple/swift-format.git resolved at 509.0.0
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.17.6
Creating working copy for https://github.com/apple/swift-cmark.git
Working copy of https://github.com/apple/swift-cmark.git resolved at 0.5.0
warning: 'swift-macro-testing': 'swift-macro-testing' dependency on 'https://github.com/swiftlang/swift-syntax' conflicts with dependency on 'https://github.com/apple/swift-syntax.git' which has the same identity 'swift-syntax'. this will be escalated to an error in future versions of SwiftPM.
warning: 'swift-snapshot-testing': 'swift-snapshot-testing' dependency on 'https://github.com/swiftlang/swift-syntax' conflicts with dependency on 'https://github.com/apple/swift-syntax.git' which has the same identity 'swift-syntax'. this will be escalated to an error in future versions of SwiftPM.
[1/1] Compiling plugin Format Source Code
[2/2] Compiling plugin GenerateManual
[3/3] Compiling plugin Lint Source Code
Building for debugging...
[3/76] Compiling cmark-gfm cmark.c
[4/76] Compiling CAtomic CAtomic.c
[5/76] Compiling cmark-gfm arena.c
[6/76] Compiling cmark-gfm buffer.c
[7/76] Compiling cmark-gfm houdini_href_e.c
[8/76] Compiling cmark-gfm blocks.c
[9/76] Compiling cmark-gfm footnotes.c
[10/76] Compiling cmark-gfm commonmark.c
[11/76] Compiling cmark-gfm-extensions tagfilter.c
[12/76] Compiling cmark-gfm-extensions tasklist.c
[13/76] Compiling cmark-gfm-extensions ext_scanners.c
[14/76] Compiling cmark-gfm-extensions table.c
[15/76] Compiling cmark-gfm-extensions strikethrough.c
[16/76] Compiling cmark-gfm-extensions autolink.c
[17/76] Compiling cmark-gfm xml.c
[18/76] Compiling cmark-gfm-extensions core-extensions.c
[19/76] Compiling cmark-gfm syntax_extension.c
[20/76] Write swift-version-24593BA9C3E375BF.txt
[21/76] Compiling cmark-gfm plugin.c
[22/76] Compiling cmark-gfm plaintext.c
[23/76] Compiling cmark-gfm render.c
[24/76] Compiling cmark-gfm registry.c
[25/76] Compiling cmark-gfm references.c
[26/76] Compiling cmark-gfm map.c
[27/76] Compiling cmark-gfm iterator.c
[28/76] Compiling cmark-gfm man.c
[29/76] Compiling cmark-gfm linked_list.c
[30/76] Compiling cmark-gfm html.c
[31/76] Compiling cmark-gfm latex.c
[32/76] Write sources
[36/76] Compiling cmark-gfm cmark_ctype.c
[37/76] Write sources
[51/76] Compiling cmark-gfm houdini_html_e.c
[52/76] Compiling cmark-gfm inlines.c
[53/76] Compiling cmark-gfm node.c
[54/76] Compiling cmark-gfm utf8.c
[55/76] Compiling cmark-gfm scanners.c
[56/76] Compiling cmark-gfm houdini_html_u.c
[58/139] Emitting module SwiftSyntax509
[59/139] Compiling SwiftSyntax509 Empty.swift
[60/140] Compiling Markdown MarkupRewriter.swift
[61/140] Compiling Markdown BasicBlockContainer.swift
[62/140] Compiling Markdown BasicInlineContainer.swift
[63/140] Compiling Markdown BlockContainer.swift
[64/140] Compiling Markdown BlockMarkup.swift
[65/140] Compiling Markdown InlineContainer.swift
[66/140] Compiling Markdown InlineMarkup.swift
[67/140] Compiling Markdown ListItemContainer.swift
[68/140] Compiling Markdown Strikethrough.swift
[69/140] Compiling Markdown Strong.swift
[70/140] Compiling Markdown CustomInline.swift
[71/140] Compiling Markdown InlineCode.swift
[72/140] Compiling Markdown InlineHTML.swift
[73/140] Compiling Markdown LineBreak.swift
[74/140] Compiling Markdown SoftBreak.swift
[75/140] Compiling Markdown SymbolLink.swift
[76/148] Wrapping AST for SwiftSyntax509 for debugging
[78/193] Compiling SwiftSyntax ChildNameForKeyPath.swift
[79/193] Compiling SwiftSyntax Keyword.swift
[80/193] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[81/193] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[82/193] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[83/193] Compiling SwiftSyntax SyntaxBaseNodes.swift
[84/193] Compiling SwiftSyntax SyntaxText.swift
[85/193] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[86/193] Compiling SwiftSyntax TokenDiagnostic.swift
[87/193] Compiling Markdown TableCellContainer.swift
[88/193] Compiling Markdown TableHead.swift
[89/193] Compiling Markdown TableRow.swift
[90/193] Compiling Markdown Replacement.swift
[91/193] Compiling Markdown SourceLocation.swift
[92/193] Compiling Markdown Emphasis.swift
[93/193] Compiling Markdown Image.swift
[94/193] Compiling Markdown InlineAttributes.swift
[95/193] Compiling Markdown Link.swift
[96/193] Compiling SwiftSyntax RawSyntaxTokenView.swift
[97/193] Compiling SwiftSyntax SourceLength.swift
[98/193] Compiling SwiftSyntax SourceLocation.swift
[99/193] Compiling SwiftSyntax SourcePresence.swift
[100/193] Compiling SwiftSyntax AbsolutePosition.swift
[101/193] Compiling SwiftSyntax Assert.swift
[102/193] Compiling SwiftSyntax BumpPtrAllocator.swift
[103/193] Compiling SwiftSyntax CommonAncestor.swift
[104/193] Compiling SwiftSyntax Convenience.swift
[105/193] Compiling SwiftSyntax MemoryLayout.swift
[106/193] Compiling SwiftSyntax MissingNodeInitializers.swift
[107/193] Compiling SwiftSyntax SyntaxCollections.swift
[108/193] Compiling SwiftSyntax SyntaxEnum.swift
[109/193] Compiling SwiftSyntax SyntaxKind.swift
[110/193] Compiling SwiftSyntax SyntaxRewriter.swift
[111/193] Compiling SwiftSyntax SyntaxTraits.swift
[112/193] Compiling SwiftSyntax SyntaxTransform.swift
[113/193] Emitting module Markdown
[114/193] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[115/193] Compiling SwiftSyntax Syntax.swift
[116/193] Compiling SwiftSyntax SyntaxArena.swift
[117/193] Compiling SwiftSyntax SyntaxChildren.swift
[118/193] Compiling SwiftSyntax SyntaxCollection.swift
[119/193] Compiling SwiftSyntax SyntaxData.swift
[120/193] Compiling SwiftSyntax RawSyntax.swift
[121/193] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[122/193] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[143/199] Compiling Markdown AtomicCounter.swift
[144/199] Compiling Markdown CharacterExtensions.swift
[145/199] Compiling Markdown CollectionExtensions.swift
[146/199] Compiling Markdown StringExtensions.swift
[147/199] Compiling Markdown MarkupVisitor.swift
[148/199] Compiling Markdown MarkupWalker.swift
[149/199] Compiling Markdown MarkupFormatter.swift
[150/199] Compiling Markdown MarkupTreeDumper.swift
[151/200] Wrapping AST for Markdown for debugging
[153/200] Emitting module SwiftSyntax
[169/200] Compiling SwiftSyntax TokenSyntax.swift
[170/200] Compiling SwiftSyntax Trivia.swift
[171/200] Compiling SwiftSyntax Utils.swift
[172/200] Compiling SwiftSyntax SyntaxDeclNodes.swift
[173/200] Compiling SwiftSyntax SyntaxExprNodes.swift
[174/200] Compiling SwiftSyntax SyntaxNodes.swift
[175/200] Compiling SwiftSyntax SyntaxPatternNodes.swift
[176/200] Compiling SwiftSyntax SyntaxStmtNodes.swift
[177/200] Compiling SwiftSyntax SyntaxTypeNodes.swift
[178/200] Compiling SwiftSyntax SyntaxVisitor.swift
[179/200] Compiling SwiftSyntax TokenKind.swift
[180/200] Compiling SwiftSyntax Tokens.swift
[181/200] Compiling SwiftSyntax TriviaPieces.swift
[182/200] Compiling SwiftSyntax RawSyntaxNodes.swift
[183/200] Compiling SwiftSyntax RawSyntaxValidation.swift
[184/213] Wrapping AST for SwiftSyntax for debugging
[186/252] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[187/252] Compiling SwiftDiagnostics Note.swift
[188/252] Compiling SwiftDiagnostics Message.swift
[189/252] Compiling SwiftBasicFormat Syntax+Extensions.swift
[190/252] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[191/252] Compiling SwiftDiagnostics FixIt.swift
[192/252] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[193/252] Compiling SwiftDiagnostics Diagnostic.swift
[194/252] Compiling SwiftDiagnostics Convenience.swift
[195/252] Emitting module SwiftDiagnostics
[196/252] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[198/253] Compiling SwiftBasicFormat BasicFormat.swift
[199/253] Emitting module SwiftBasicFormat
[199/254] Wrapping AST for SwiftDiagnostics for debugging
[201/254] Wrapping AST for SwiftBasicFormat for debugging
[203/254] Compiling SwiftParser Modifiers.swift
[204/254] Compiling SwiftParser Names.swift
[205/254] Compiling SwiftParser Nominals.swift
[206/254] Compiling SwiftParser Parameters.swift
[207/254] Compiling SwiftParser ParseSourceFile.swift
[208/259] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[209/259] Compiling SwiftParser StringLiterals.swift
[210/259] Compiling SwiftParser SwiftParserCompatibility.swift
[211/259] Compiling SwiftParser SyntaxUtils.swift
[212/259] Compiling SwiftParser TokenConsumer.swift
[213/259] Compiling SwiftParser TokenPrecedence.swift
[214/259] Compiling SwiftParser TokenSpec.swift
[215/259] Compiling SwiftParser TokenSpecSet.swift
[216/259] Compiling SwiftParser TopLevel.swift
[217/259] Compiling SwiftParser TriviaParser.swift
[218/259] Compiling SwiftParser Lexer.swift
[219/259] Compiling SwiftParser RegexLiteralLexer.swift
[220/259] Compiling SwiftParser UnicodeScalarExtensions.swift
[221/259] Compiling SwiftParser Lookahead.swift
[222/259] Compiling SwiftParser LoopProgressCondition.swift
[223/259] Compiling SwiftParser Parser.swift
[224/259] Compiling SwiftParser Patterns.swift
[225/259] Compiling SwiftParser Recovery.swift
[226/259] Compiling SwiftParser Specifiers.swift
[227/259] Compiling SwiftParser Statements.swift
[228/259] Compiling SwiftParser Attributes.swift
[229/259] Compiling SwiftParser Availability.swift
[230/259] Compiling SwiftParser CharacterInfo.swift
[231/259] Compiling SwiftParser CollectionNodes+Parsable.swift
[232/259] Compiling SwiftParser Declarations.swift
[233/259] Compiling SwiftParser Directives.swift
[234/259] Compiling SwiftParser ExperimentalFeatures.swift
[235/259] Compiling SwiftParser Expressions.swift
[236/259] Compiling SwiftParser IncrementalParseTransition.swift
[237/259] Compiling SwiftParser Cursor.swift
[238/259] Compiling SwiftParser Lexeme.swift
[239/259] Compiling SwiftParser LexemeSequence.swift
[240/259] Emitting module SwiftParser
[241/259] Compiling SwiftParser Types.swift
[242/259] Compiling SwiftParser IsLexerClassified.swift
[243/259] Compiling SwiftParser LayoutNodes+Parsable.swift
[244/259] Compiling SwiftParser Parser+TokenSpecSet.swift
[245/259] Compiling SwiftParser TokenSpecStaticMembers.swift
[246/260] Wrapping AST for SwiftParser for debugging
[248/283] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[249/284] Compiling SwiftOperators PrecedenceGroup.swift
[250/285] Compiling SwiftOperators PrecedenceGraph.swift
[251/285] Compiling SwiftOperators OperatorTable.swift
[252/285] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[253/285] Compiling SwiftOperators SyntaxSynthesis.swift
[254/285] Compiling SwiftOperators OperatorError.swift
[255/285] Compiling SwiftOperators OperatorTable+Defaults.swift
[256/285] Compiling SwiftOperators Operator.swift
[257/285] Compiling SwiftOperators OperatorError+Diagnostics.swift
[258/285] Compiling SwiftOperators OperatorTable+Folding.swift
[259/285] Emitting module SwiftOperators
[260/285] Compiling SwiftOperators OperatorTable+Semantics.swift
[261/286] Wrapping AST for SwiftOperators for debugging
[263/286] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[264/286] Compiling SwiftParserDiagnostics Utils.swift
[265/286] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[266/286] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[267/286] Compiling SwiftParserDiagnostics PresenceUtils.swift
[270/286] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[271/286] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[274/286] Emitting module SwiftParserDiagnostics
[275/287] Wrapping AST for SwiftParserDiagnostics for debugging
[277/376] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[278/376] Compiling SwiftFormat ImportsXCTestVisitor.swift
[279/377] Compiling SwiftFormat LazySplitSequence.swift
[280/377] Compiling SwiftFormat LegacyTriviaBehavior.swift
[281/377] Compiling SwiftFormat LintPipeline.swift
[282/377] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[283/377] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[284/377] Compiling SwiftFormat FindingEmitter.swift
[285/377] Compiling SwiftFormat FormatPipeline.swift
[286/377] Compiling SwiftFormat DocumentationCommentText.swift
[287/377] Compiling SwiftFormat Finding+Convenience.swift
[288/377] Emitting module SwiftSyntaxBuilder
[289/377] Compiling SwiftFormat Configuration+Default.swift
[290/377] Compiling SwiftFormat Configuration.swift
[291/377] Compiling SwiftFormat DebugOptions.swift
[292/377] Compiling SwiftFormat Finding.swift
[293/377] Compiling SwiftFormat FindingCategorizing.swift
[294/377] Compiling SwiftFormat Indent.swift
[295/377] Compiling SwiftFormat SwiftFormatError.swift
[296/377] Compiling SwiftFormat SwiftFormatter.swift
[297/377] Compiling SwiftFormat SwiftLinter.swift
[298/377] Compiling SwiftFormat Context.swift
[299/377] Compiling SwiftFormat DocumentationComment.swift
[300/387] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[301/387] Compiling SwiftFormat NeverForceUnwrap.swift
[302/387] Compiling SwiftFormat NeverUseForceTry.swift
[303/387] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[304/387] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[305/387] Compiling SwiftFormat NoAssignmentInExpressions.swift
[306/387] Compiling SwiftFormat NoBlockComments.swift
[307/387] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[308/387] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[309/387] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[310/387] Compiling SwiftFormat NoLeadingUnderscores.swift
[311/387] Compiling SwiftFormat NoParensAroundConditions.swift
[312/387] Compiling SwiftFormat NoPlaygroundLiterals.swift
[313/387] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[314/387] Compiling SwiftFormat OmitExplicitReturns.swift
[315/387] Compiling SwiftFormat OneCasePerLine.swift
[316/387] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[317/387] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[318/387] Compiling SwiftFormat OrderedImports.swift
[319/387] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[320/387] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[321/387] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[322/387] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[323/387] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[324/387] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[325/387] Compiling SwiftFormat DoNotUseSemicolons.swift
[326/387] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[327/387] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[328/387] Compiling SwiftFormat FullyIndirectEnum.swift
[329/387] Compiling SwiftFormat GroupNumericLiterals.swift
[330/387] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[331/387] Compiling SwiftFormat Parsing.swift
[332/387] Compiling SwiftFormat Trivia+Convenience.swift
[333/388] Wrapping AST for SwiftSyntaxBuilder for debugging
[335/402] Compiling SwiftSyntaxMacros AccessorMacro.swift
[336/402] Compiling SwiftSyntaxMacros AttachedMacro.swift
[337/402] Compiling SwiftSyntaxMacros Macro.swift
[338/402] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[339/402] Compiling SwiftSyntaxMacros MemberMacro.swift
[340/402] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[341/402] Compiling SwiftSyntaxMacros Macro+Format.swift
[342/402] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[343/402] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[344/402] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[345/402] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[346/403] Compiling SwiftSyntaxMacros PeerMacro.swift
[347/403] Emitting module SwiftSyntaxMacros
[348/403] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[349/403] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[350/404] Wrapping AST for SwiftSyntaxMacros for debugging
[352/412] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[353/412] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[354/412] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[355/412] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[356/412] Emitting module SwiftSyntaxMacroExpansion
[357/412] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[358/412] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[359/412] Compiling SwiftFormat UseEarlyExits.swift
[360/412] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[361/412] Compiling SwiftFormat UseShorthandTypeNames.swift
[362/412] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[363/412] Compiling SwiftFormat UseSynthesizedInitializer.swift
[364/412] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[365/412] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[366/412] Compiling SwiftFormat ValidateDocumentationComments.swift
[367/412] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[368/412] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[369/412] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[370/413] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[372/420] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[373/420] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[374/420] Emitting module SwiftCompilerPluginMessageHandling
[375/420] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[376/420] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[388/420] Compiling SwiftFormat Pipelines+Generated.swift
[389/420] Compiling SwiftFormat RememberingIterator.swift
[390/420] Compiling SwiftFormat Rule.swift
[391/420] Compiling SwiftFormat RuleBasedFindingCategory.swift
[392/420] Compiling SwiftFormat RuleMask.swift
[393/420] Compiling SwiftFormat RuleNameCache+Generated.swift
[394/420] Compiling SwiftFormat RuleRegistry+Generated.swift
[395/420] Compiling SwiftFormat RuleState.swift
[396/420] Compiling SwiftFormat SyntaxFormatRule.swift
[397/420] Compiling SwiftFormat SyntaxLintRule.swift
[398/420] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[400/420] Compiling SwiftFormat WithSemicolonSyntax.swift
[401/420] Compiling SwiftFormat Comment.swift
[402/420] Compiling SwiftFormat Indent+Length.swift
[403/420] Compiling SwiftFormat PrettyPrint.swift
[404/420] Compiling SwiftFormat PrettyPrintFindingCategory.swift
[405/420] Compiling SwiftFormat Token.swift
[406/420] Compiling SwiftFormat TokenStreamCreator.swift
[407/420] Compiling SwiftFormat Verbatim.swift
[408/420] Compiling SwiftFormat WhitespaceFindingCategory.swift
[409/420] Compiling SwiftFormat WhitespaceLinter.swift
[410/420] Emitting module SwiftFormat
[411/421] Wrapping AST for SwiftFormat for debugging
[413/423] Emitting module SwiftFormatConfiguration
[414/423] Compiling SwiftFormatConfiguration Compatibility.swift
[416/424] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[417/424] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[417/425] Wrapping AST for SwiftFormatConfiguration for debugging
[419/425] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[421/427] Emitting module SwiftCompilerPlugin
[422/427] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[423/428] Wrapping AST for SwiftCompilerPlugin for debugging
[425/470] Compiling MacroToolkit LiteralProtocol.swift
[426/470] Compiling MacroToolkit MacroAttribute.swift
[427/470] Compiling MacroToolkit MemberType.swift
[428/470] Compiling MacroToolkit MetatypeType.swift
[429/470] Compiling MacroToolkit MissingType.swift
[430/470] Compiling MacroToolkit NilLiteral.swift
[431/470] Emitting module MacroToolkit
[432/470] Compiling MacroToolkit OptionalType.swift
[433/470] Compiling MacroToolkit PackExpansionType.swift
[434/470] Compiling MacroToolkit PackReferenceType.swift
[435/470] Compiling MacroToolkit RegexLiteral.swift
[436/470] Compiling MacroToolkit SimpleType.swift
[437/470] Compiling MacroToolkit SomeOrAnyType.swift
[438/475] Compiling MacroToolkit Enum.swift
[439/475] Compiling MacroToolkit EnumCase.swift
[440/475] Compiling MacroToolkit EnumCaseAssociatedValueParameter.swift
[441/475] Compiling MacroToolkit EnumCaseValue.swift
[442/475] Compiling MacroToolkit Expr.swift
[443/475] Compiling MacroToolkit ExprProtocol.swift
[444/475] Compiling MacroToolkit String+Extensions.swift
[445/475] Compiling MacroToolkit StringLiteral.swift
[446/475] Compiling MacroToolkit Struct.swift
[447/475] Compiling MacroToolkit SuppressedType.swift
[448/475] Compiling MacroToolkit SwiftSyntax+Extensions.swift
[449/475] Compiling MacroToolkit ArrayType.swift
[450/475] Compiling MacroToolkit Attribute.swift
[451/475] Compiling MacroToolkit AttributeListElement.swift
[452/475] Compiling MacroToolkit BooleanLiteral.swift
[453/475] Compiling MacroToolkit ClassRestrictionType.swift
[454/475] Compiling MacroToolkit CompositionType.swift
[455/475] Compiling MacroToolkit FloatLiteral.swift
[456/475] Compiling MacroToolkit Function.swift
[457/475] Compiling MacroToolkit FunctionParameter.swift
[458/475] Compiling MacroToolkit FunctionType.swift
[459/475] Compiling MacroToolkit ImplicitlyUnwrappedOptionalType.swift
[460/475] Compiling MacroToolkit IntegerLiteral.swift
[461/475] Compiling MacroToolkit ConditionalCompilationBlock.swift
[462/475] Compiling MacroToolkit Decl.swift
[463/475] Compiling MacroToolkit DeclGroup.swift
[464/475] Compiling MacroToolkit Destructuring.swift
[465/475] Compiling MacroToolkit Diagnostics.swift
[466/475] Compiling MacroToolkit DictionaryType.swift
[467/475] Compiling MacroToolkit TupleType.swift
[468/475] Compiling MacroToolkit Type.swift
[469/475] Compiling MacroToolkit TypeProtocol.swift
[470/475] Compiling MacroToolkit Variable.swift
[471/475] Compiling MacroToolkit VariableBinding.swift
[472/476] Wrapping AST for MacroToolkit for debugging
[474/526] Compiling Macro EncodableMacro.swift
[475/526] Compiling Macro CodingKey.swift
[476/526] Compiling Macro CodingKeyMacro.swift
[477/526] Compiling Macro CustomCoding.swift
[478/526] Compiling Macro CustomCodingMacro.swift
[479/526] Compiling Macro DefaultValue.swift
[480/526] Compiling Macro DefaultValueMacro.swift
[481/532] Compiling Macro AllOfCodable.swift
[482/532] Compiling Macro AllOfDecodableMacro.swift
[483/532] Compiling Macro AllOfEncodableMacro.swift
[484/532] Compiling Macro AllOfMacroBase.swift
[485/532] Compiling Macro CodableMacro.swift
[486/532] Compiling Macro CodableMacroBase.swift
[487/532] Compiling Macro DecodableMacro.swift
[488/532] Compiling Macro CodeBuilder+Helpers.swift
[489/532] Compiling Macro Conformance+Helpers.swift
[490/532] Compiling Macro DiagnosticMessage+Helpers.swift
[491/532] Compiling Macro MacroToolkit+Helpers.swift
[492/532] Compiling Macro MessageID+Helpers.swift
[493/532] Compiling Macro String+Helpers.swift
[494/532] Compiling Macro Type+Helpers.swift
[495/532] Emitting module Macro
/host/spi-builder-workspace/Sources/Macro/Misc/MacroCurrent.swift:12:28: warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct MacroConfiguration {
12 | fileprivate static var _current: Self!
| |- warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_current' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | static var current: Self {
[496/532] Compiling Macro OmitCoding.swift
[497/532] Compiling Macro OmitCodingMacro.swift
[498/532] Compiling Macro OneOfCodable.swift
[499/532] Compiling Macro OneOfDecodable.swift
[500/532] Compiling Macro OneOfEncodable.swift
[501/532] Compiling Macro OneOfMacroBase.Diagnostic.swift
[502/532] Compiling Macro OneOfMacroBase.Expander.swift
[503/532] Compiling Macro OneOfMacroBase.swift
[504/532] Compiling Macro ValueStrategy.swift
[505/532] Compiling Macro ValueStrategyMacro.swift
[506/532] Compiling Macro ClassDecl.swift
[507/532] Compiling Macro CodableBuilderFactory.swift
[508/532] Compiling Macro CodableBuildersMisc.swift
[509/532] Compiling Macro CodableBuildingData.swift
[510/532] Compiling Macro CodingKeysBuilder+Enum.swift
[511/532] Compiling Macro CodingKeysBuilder+Instance.swift
[512/532] Compiling Macro CodingKeysBuilder.swift
[513/532] Compiling Macro DecodableBuilder+Instance.swift
[514/532] Compiling Macro DecodableBuilder.swift
[515/532] Compiling Macro EncodableBuilder+Instance.swift
[516/532] Compiling Macro EncodableBuilder.swift
[517/532] Compiling Macro Variable+Diagnostic.swift
[518/532] Compiling Macro Variable+KnownAttributes.swift
[519/532] Compiling Macro CodeBuilder.swift
[520/532] Compiling Macro ExtensionBuilder.swift
[521/532] Compiling Macro CommonDiagnostic.swift
[522/532] Compiling Macro Conformance.swift
[523/532] Compiling Macro ConformanceDiagnosticChecker.swift
[524/532] Compiling Macro Diagnostic.swift
/host/spi-builder-workspace/Sources/Macro/Misc/MacroCurrent.swift:12:28: warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct MacroConfiguration {
12 | fileprivate static var _current: Self!
| |- warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_current' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | static var current: Self {
[525/532] Compiling Macro Instance.swift
/host/spi-builder-workspace/Sources/Macro/Misc/MacroCurrent.swift:12:28: warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct MacroConfiguration {
12 | fileprivate static var _current: Self!
| |- warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_current' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | static var current: Self {
[526/532] Compiling Macro InstanceExpander.swift
/host/spi-builder-workspace/Sources/Macro/Misc/MacroCurrent.swift:12:28: warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct MacroConfiguration {
12 | fileprivate static var _current: Self!
| |- warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_current' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | static var current: Self {
[527/532] Compiling Macro MacroCurrent.swift
/host/spi-builder-workspace/Sources/Macro/Misc/MacroCurrent.swift:12:28: warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct MacroConfiguration {
12 | fileprivate static var _current: Self!
| |- warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_current' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | static var current: Self {
[528/532] Compiling Macro SwiftFormatter.swift
/host/spi-builder-workspace/Sources/Macro/Misc/MacroCurrent.swift:12:28: warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct MacroConfiguration {
12 | fileprivate static var _current: Self!
| |- warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_current' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | static var current: Self {
[529/532] Compiling Macro Plugin.swift
/host/spi-builder-workspace/Sources/Macro/Misc/MacroCurrent.swift:12:28: warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct MacroConfiguration {
12 | fileprivate static var _current: Self!
| |- warning: static property '_current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_current' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | static var current: Self {
[530/533] Wrapping AST for Macro for debugging
[531/533] Write Objects.LinkFileList
[532/533] Linking Macro-tool
[534/558] Compiling MacroCodableKit BoolFalse.swift
[535/558] Compiling MacroCodableKit BoolTrue.swift
[536/558] Compiling MacroCodableKit DoubleZero.swift
[537/561] Compiling MacroCodableKit ISO8601DateFormatterProvider.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30+00:00`
21 | public struct ISO8601DefaultDateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = ISO8601DateFormatter()
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:36:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
34 | /// Example: `2023-10-03`
35 | public struct ISO8601FullDateDateFormatterProvider: DateFormatterProvider {
36 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | let formatter = ISO8601DateFormatter()
38 | formatter.formatOptions = .withFullDate
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:54:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
52 | /// Example: `2023-10-03T10:15:30.123+00:00`
53 | public struct ISO8601WithFractionalSecondsDateFormatterProvider: DateFormatterProvider {
54 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | let formatter = ISO8601DateFormatter()
56 | formatter.formatOptions = [.withInternetDateTime, .withFractionalSeconds]
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/RFC2822DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30.123+00:00`
21 | public struct RFC2822DateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | let dateFormatter = DateFormatter()
24 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/RFC3339DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30Z`
21 | public struct RFC3339DateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | let dateFormatter = DateFormatter()
24 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
[538/561] Compiling MacroCodableKit RFC2822DateFormatterProvider.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30+00:00`
21 | public struct ISO8601DefaultDateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = ISO8601DateFormatter()
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:36:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
34 | /// Example: `2023-10-03`
35 | public struct ISO8601FullDateDateFormatterProvider: DateFormatterProvider {
36 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | let formatter = ISO8601DateFormatter()
38 | formatter.formatOptions = .withFullDate
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:54:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
52 | /// Example: `2023-10-03T10:15:30.123+00:00`
53 | public struct ISO8601WithFractionalSecondsDateFormatterProvider: DateFormatterProvider {
54 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | let formatter = ISO8601DateFormatter()
56 | formatter.formatOptions = [.withInternetDateTime, .withFractionalSeconds]
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/RFC2822DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30.123+00:00`
21 | public struct RFC2822DateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | let dateFormatter = DateFormatter()
24 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/RFC3339DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30Z`
21 | public struct RFC3339DateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | let dateFormatter = DateFormatter()
24 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
[539/561] Compiling MacroCodableKit RFC3339DateFormatterProvider.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30+00:00`
21 | public struct ISO8601DefaultDateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = ISO8601DateFormatter()
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:36:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
34 | /// Example: `2023-10-03`
35 | public struct ISO8601FullDateDateFormatterProvider: DateFormatterProvider {
36 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | let formatter = ISO8601DateFormatter()
38 | formatter.formatOptions = .withFullDate
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:54:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
52 | /// Example: `2023-10-03T10:15:30.123+00:00`
53 | public struct ISO8601WithFractionalSecondsDateFormatterProvider: DateFormatterProvider {
54 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | let formatter = ISO8601DateFormatter()
56 | formatter.formatOptions = [.withInternetDateTime, .withFractionalSeconds]
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/RFC2822DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30.123+00:00`
21 | public struct RFC2822DateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | let dateFormatter = DateFormatter()
24 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/RFC3339DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30Z`
21 | public struct RFC3339DateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | let dateFormatter = DateFormatter()
24 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
[540/561] Compiling MacroCodableKit TimestampedDate.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/YearMonthDayDateFormatterProvider.swift:20:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
18 | /// Example: `2023-10-03`
19 | public struct YearMonthDayDateFormatterProvider: DateFormatterProvider {
20 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | let dateFormatter = DateFormatter()
22 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
[541/561] Compiling MacroCodableKit YearMonthDayDateFormatterProvider.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/YearMonthDayDateFormatterProvider.swift:20:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
18 | /// Example: `2023-10-03`
19 | public struct YearMonthDayDateFormatterProvider: DateFormatterProvider {
20 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | let dateFormatter = DateFormatter()
22 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
[542/561] Compiling MacroCodableKit ValueCodableStrategy.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/YearMonthDayDateFormatterProvider.swift:20:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
18 | /// Example: `2023-10-03`
19 | public struct YearMonthDayDateFormatterProvider: DateFormatterProvider {
20 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | let dateFormatter = DateFormatter()
22 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
[543/561] Compiling MacroCodableKit EmptyString.swift
[544/561] Compiling MacroCodableKit IntZero.swift
[545/561] Compiling MacroCodableKit DefaultValueStrategy.swift
[546/561] Compiling MacroCodableKit OptionalProtocol.swift
[547/561] Compiling MacroCodableKit Base64Strategy.swift
[548/561] Compiling MacroCodableKit DateFormatterStrategy.swift
[549/561] Compiling MacroCodableKit SafeDecoding.swift
[550/561] Compiling MacroCodableKit CustomCodingDecoding+Types.swift
[551/561] Compiling MacroCodableKit CustomCodingEncoding+Types.swift
[552/561] Compiling MacroCodableKit CustomDecodingName.swift
[553/561] Compiling MacroCodableKit CustomCodingDecoding.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingDecoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the decoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an decoding operation through ``errorHandler``
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingEncoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the encoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an encoding operation through ``errorHandler``
[554/561] Compiling MacroCodableKit CustomCodingEncoding.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingDecoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the decoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an decoding operation through ``errorHandler``
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingEncoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the encoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an encoding operation through ``errorHandler``
[555/561] Compiling MacroCodableKit SafeDecoding+Array.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingDecoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the decoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an decoding operation through ``errorHandler``
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingEncoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the encoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an encoding operation through ``errorHandler``
[556/561] Compiling MacroCodableKit SafeDecoding+Dictionary.swift
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingDecoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the decoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an decoding operation through ``errorHandler``
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingEncoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the encoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an encoding operation through ``errorHandler``
[557/561] Compiling MacroCodableKit AllOf.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f2001039bb4... done ***
*** Program crashed: Illegal instruction at 0x00007f2001039bb4 ***
Thread 0 "Macro-tool" crashed:
0 0x00007f2001039bb4 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f2001039962 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f200103981d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f20011bcd16 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f20011bcf6e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f200123ebd0 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x0000560caef27562 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in Macro-tool at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:203:31
7 [ra] 0x00007f200187a3bf partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundationEssentials.so
Registers:
rax 0x0000000000000000 0
rdx 0x0000000000000001 1
rcx 0x0000000000000002 2
rbx 0x00005609d2f80ee3 94600194166499
rsi 0x0000000000000007 7
rdi 0x0000560cb2320010 03 00 02 00 02 00 02 00 01 00 01 00 00 00 01 00 ················
rbp 0x00007ffde29da990 d0 a9 9d e2 fd 7f 00 00 62 99 03 01 20 7f 00 00 Щ·âý···b··· ···
rsp 0x00007ffde29da980 20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00 ·······¸·······
r8 0x0000560cb2333440 e3 0e f8 d2 09 56 00 00 58 a9 b3 58 54 aa f0 e4 ã·øÒ·V··X©³XTªðä
r9 0x00007ffde29da770 46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61 Fatal error: loa
r10 0x0000000000000000 0
r11 0xe4f0aa5458b3a958 16496872714300270936
r12 0x0000000000000000 0
r13 0x00007f2001475f70 00 02 00 00 00 00 00 00 ec af 4b 01 20 7f 00 00 ········ì¯K· ···
r14 0x0000000000000001 1
r15 0x0000000000000001 1
rip 0x00007f2001039bb4 0f 0b 48 83 ec 08 48 8d 05 3f cb 46 00 48 8d 3d ··H·ì·H··?ËF·H·=
rflags 0x0000000000010202
cs 0x0033 fs 0x0000 gs 0x0000
Images (17 omitted):
0x0000560caebc9000–0x0000560cb0f2ade8 <no build ID> Macro-tool /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool
0x00007f2000eda000–0x00007f200146eac8 c51192efcf3d046b4eccd29cbc4a02a48194fe47 libswiftCore.so /usr/lib/swift/linux/libswiftCore.so
0x00007f20015e5000–0x00007f2001a61688 <no build ID> libFoundationEssentials.so /usr/lib/swift/linux/libFoundationEssentials.so
Backtrace took 1.60s
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:38:14: warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
36 | /// ```
37 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
38 | public macro AllOfCodable() = #externalMacro(module: "Macro", type: "AllOfCodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
39 |
40 | /// Generates `Decodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:70:14: warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
68 | /// ```
69 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
70 | public macro AllOfDecodable() = #externalMacro(module: "Macro", type: "AllOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
71 |
72 | /// Generates `Encodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:102:14: warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
100 | /// ```
101 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
102 | public macro AllOfEncodable() = #externalMacro(module: "Macro", type: "AllOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
103 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:21:14: warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
19 | /// ```
20 | @attached(peer)
21 | public macro CodingKey(_ key: String) = #externalMacro(module: "Macro", type: "CodingKeyMacro")
| `- warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
22 |
23 | /// Ignores a property in encoding and decoding
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:36:14: warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
34 | /// ```
35 | @attached(peer)
36 | public macro OmitCoding() = #externalMacro(module: "Macro", type: "OmitCodingMacro")
| `- warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
37 |
38 | /// Provides default value if coding fails or there's no such key
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:56:14: warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
54 | /// - During decoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler``
55 | @attached(peer)
56 | public macro DefaultValue<Provider: DefaultValueProvider>(
| `- warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
57 | _ type: Provider.Type
58 | ) = #externalMacro(module: "Macro", type: "DefaultValueMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:87:14: warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
85 | /// - During decoding and encoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler`` or ``CustomCodingEncoding/errorHandler`` respectively.
86 | @attached(peer)
87 | public macro ValueStrategy<Strategy: ValueCodableStrategy>(
| `- warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
88 | _ strategy: Strategy.Type
89 | ) = #externalMacro(module: "Macro", type: "ValueStrategyMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:112:14: warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 | /// - Implementations in ``CustomCodingDecoding`` and ``CustomCodingEncoding`` are required.
111 | @attached(peer)
112 | public macro CustomCoding<Name: CustomDecodingName>(
| `- warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
113 | _ name: Name.Type
114 | ) = #externalMacro(module: "Macro", type: "CustomCodingMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:95:14: warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
93 | /// - Handle encoding errors with ``CustomCodingEncoding/errorHandler`` in ``CustomCodingEncoding``
94 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
95 | public macro Codable() = #externalMacro(module: "Macro", type: "CodableMacro")
| `- warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
96 |
97 | /// Generates `Decodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:109:14: warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
107 | /// ```
108 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
109 | public macro Decodable() = #externalMacro(module: "Macro", type: "DecodableMacro")
| `- warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 |
111 | /// Generates `Encodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:123:14: warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
121 | /// ```
122 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
123 | public macro Encodable() = #externalMacro(module: "Macro", type: "EncodableMacro")
| `- warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
124 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:26:14: warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
24 | /// ```
25 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
26 | public macro OneOfCodable() = #externalMacro(module: "Macro", type: "OneOfCodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
27 |
28 | /// Generates `Decodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:46:14: warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
44 | /// ```
45 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
46 | public macro OneOfDecodable() = #externalMacro(module: "Macro", type: "OneOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
47 |
48 | /// Generates `Encodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:66:14: warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
64 | /// ```
65 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
66 | public macro OneOfEncodable() = #externalMacro(module: "Macro", type: "OneOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
67 |
[558/561] Compiling MacroCodableKit Annotations.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f2001039bb4... done ***
*** Program crashed: Illegal instruction at 0x00007f2001039bb4 ***
Thread 0 "Macro-tool" crashed:
0 0x00007f2001039bb4 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f2001039962 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f200103981d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f20011bcd16 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f20011bcf6e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f200123ebd0 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x0000560caef27562 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in Macro-tool at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:203:31
7 [ra] 0x00007f200187a3bf partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundationEssentials.so
Registers:
rax 0x0000000000000000 0
rdx 0x0000000000000001 1
rcx 0x0000000000000002 2
rbx 0x00005609d2f80ee3 94600194166499
rsi 0x0000000000000007 7
rdi 0x0000560cb2320010 03 00 02 00 02 00 02 00 01 00 01 00 00 00 01 00 ················
rbp 0x00007ffde29da990 d0 a9 9d e2 fd 7f 00 00 62 99 03 01 20 7f 00 00 Щ·âý···b··· ···
rsp 0x00007ffde29da980 20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00 ·······¸·······
r8 0x0000560cb2333440 e3 0e f8 d2 09 56 00 00 58 a9 b3 58 54 aa f0 e4 ã·øÒ·V··X©³XTªðä
r9 0x00007ffde29da770 46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61 Fatal error: loa
r10 0x0000000000000000 0
r11 0xe4f0aa5458b3a958 16496872714300270936
r12 0x0000000000000000 0
r13 0x00007f2001475f70 00 02 00 00 00 00 00 00 ec af 4b 01 20 7f 00 00 ········ì¯K· ···
r14 0x0000000000000001 1
r15 0x0000000000000001 1
rip 0x00007f2001039bb4 0f 0b 48 83 ec 08 48 8d 05 3f cb 46 00 48 8d 3d ··H·ì·H··?ËF·H·=
rflags 0x0000000000010202
cs 0x0033 fs 0x0000 gs 0x0000
Images (17 omitted):
0x0000560caebc9000–0x0000560cb0f2ade8 <no build ID> Macro-tool /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool
0x00007f2000eda000–0x00007f200146eac8 c51192efcf3d046b4eccd29cbc4a02a48194fe47 libswiftCore.so /usr/lib/swift/linux/libswiftCore.so
0x00007f20015e5000–0x00007f2001a61688 <no build ID> libFoundationEssentials.so /usr/lib/swift/linux/libFoundationEssentials.so
Backtrace took 1.60s
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:38:14: warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
36 | /// ```
37 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
38 | public macro AllOfCodable() = #externalMacro(module: "Macro", type: "AllOfCodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
39 |
40 | /// Generates `Decodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:70:14: warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
68 | /// ```
69 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
70 | public macro AllOfDecodable() = #externalMacro(module: "Macro", type: "AllOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
71 |
72 | /// Generates `Encodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:102:14: warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
100 | /// ```
101 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
102 | public macro AllOfEncodable() = #externalMacro(module: "Macro", type: "AllOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
103 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:21:14: warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
19 | /// ```
20 | @attached(peer)
21 | public macro CodingKey(_ key: String) = #externalMacro(module: "Macro", type: "CodingKeyMacro")
| `- warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
22 |
23 | /// Ignores a property in encoding and decoding
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:36:14: warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
34 | /// ```
35 | @attached(peer)
36 | public macro OmitCoding() = #externalMacro(module: "Macro", type: "OmitCodingMacro")
| `- warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
37 |
38 | /// Provides default value if coding fails or there's no such key
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:56:14: warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
54 | /// - During decoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler``
55 | @attached(peer)
56 | public macro DefaultValue<Provider: DefaultValueProvider>(
| `- warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
57 | _ type: Provider.Type
58 | ) = #externalMacro(module: "Macro", type: "DefaultValueMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:87:14: warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
85 | /// - During decoding and encoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler`` or ``CustomCodingEncoding/errorHandler`` respectively.
86 | @attached(peer)
87 | public macro ValueStrategy<Strategy: ValueCodableStrategy>(
| `- warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
88 | _ strategy: Strategy.Type
89 | ) = #externalMacro(module: "Macro", type: "ValueStrategyMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:112:14: warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 | /// - Implementations in ``CustomCodingDecoding`` and ``CustomCodingEncoding`` are required.
111 | @attached(peer)
112 | public macro CustomCoding<Name: CustomDecodingName>(
| `- warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
113 | _ name: Name.Type
114 | ) = #externalMacro(module: "Macro", type: "CustomCodingMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:95:14: warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
93 | /// - Handle encoding errors with ``CustomCodingEncoding/errorHandler`` in ``CustomCodingEncoding``
94 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
95 | public macro Codable() = #externalMacro(module: "Macro", type: "CodableMacro")
| `- warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
96 |
97 | /// Generates `Decodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:109:14: warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
107 | /// ```
108 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
109 | public macro Decodable() = #externalMacro(module: "Macro", type: "DecodableMacro")
| `- warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 |
111 | /// Generates `Encodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:123:14: warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
121 | /// ```
122 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
123 | public macro Encodable() = #externalMacro(module: "Macro", type: "EncodableMacro")
| `- warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
124 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:26:14: warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
24 | /// ```
25 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
26 | public macro OneOfCodable() = #externalMacro(module: "Macro", type: "OneOfCodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
27 |
28 | /// Generates `Decodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:46:14: warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
44 | /// ```
45 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
46 | public macro OneOfDecodable() = #externalMacro(module: "Macro", type: "OneOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
47 |
48 | /// Generates `Encodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:66:14: warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
64 | /// ```
65 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
66 | public macro OneOfEncodable() = #externalMacro(module: "Macro", type: "OneOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
67 |
[559/561] Compiling MacroCodableKit Codable.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f2001039bb4... done ***
*** Program crashed: Illegal instruction at 0x00007f2001039bb4 ***
Thread 0 "Macro-tool" crashed:
0 0x00007f2001039bb4 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f2001039962 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f200103981d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f20011bcd16 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f20011bcf6e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f200123ebd0 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x0000560caef27562 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in Macro-tool at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:203:31
7 [ra] 0x00007f200187a3bf partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundationEssentials.so
Registers:
rax 0x0000000000000000 0
rdx 0x0000000000000001 1
rcx 0x0000000000000002 2
rbx 0x00005609d2f80ee3 94600194166499
rsi 0x0000000000000007 7
rdi 0x0000560cb2320010 03 00 02 00 02 00 02 00 01 00 01 00 00 00 01 00 ················
rbp 0x00007ffde29da990 d0 a9 9d e2 fd 7f 00 00 62 99 03 01 20 7f 00 00 Щ·âý···b··· ···
rsp 0x00007ffde29da980 20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00 ·······¸·······
r8 0x0000560cb2333440 e3 0e f8 d2 09 56 00 00 58 a9 b3 58 54 aa f0 e4 ã·øÒ·V··X©³XTªðä
r9 0x00007ffde29da770 46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61 Fatal error: loa
r10 0x0000000000000000 0
r11 0xe4f0aa5458b3a958 16496872714300270936
r12 0x0000000000000000 0
r13 0x00007f2001475f70 00 02 00 00 00 00 00 00 ec af 4b 01 20 7f 00 00 ········ì¯K· ···
r14 0x0000000000000001 1
r15 0x0000000000000001 1
rip 0x00007f2001039bb4 0f 0b 48 83 ec 08 48 8d 05 3f cb 46 00 48 8d 3d ··H·ì·H··?ËF·H·=
rflags 0x0000000000010202
cs 0x0033 fs 0x0000 gs 0x0000
Images (17 omitted):
0x0000560caebc9000–0x0000560cb0f2ade8 <no build ID> Macro-tool /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool
0x00007f2000eda000–0x00007f200146eac8 c51192efcf3d046b4eccd29cbc4a02a48194fe47 libswiftCore.so /usr/lib/swift/linux/libswiftCore.so
0x00007f20015e5000–0x00007f2001a61688 <no build ID> libFoundationEssentials.so /usr/lib/swift/linux/libFoundationEssentials.so
Backtrace took 1.60s
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:38:14: warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
36 | /// ```
37 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
38 | public macro AllOfCodable() = #externalMacro(module: "Macro", type: "AllOfCodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
39 |
40 | /// Generates `Decodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:70:14: warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
68 | /// ```
69 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
70 | public macro AllOfDecodable() = #externalMacro(module: "Macro", type: "AllOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
71 |
72 | /// Generates `Encodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:102:14: warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
100 | /// ```
101 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
102 | public macro AllOfEncodable() = #externalMacro(module: "Macro", type: "AllOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
103 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:21:14: warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
19 | /// ```
20 | @attached(peer)
21 | public macro CodingKey(_ key: String) = #externalMacro(module: "Macro", type: "CodingKeyMacro")
| `- warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
22 |
23 | /// Ignores a property in encoding and decoding
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:36:14: warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
34 | /// ```
35 | @attached(peer)
36 | public macro OmitCoding() = #externalMacro(module: "Macro", type: "OmitCodingMacro")
| `- warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
37 |
38 | /// Provides default value if coding fails or there's no such key
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:56:14: warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
54 | /// - During decoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler``
55 | @attached(peer)
56 | public macro DefaultValue<Provider: DefaultValueProvider>(
| `- warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
57 | _ type: Provider.Type
58 | ) = #externalMacro(module: "Macro", type: "DefaultValueMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:87:14: warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
85 | /// - During decoding and encoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler`` or ``CustomCodingEncoding/errorHandler`` respectively.
86 | @attached(peer)
87 | public macro ValueStrategy<Strategy: ValueCodableStrategy>(
| `- warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
88 | _ strategy: Strategy.Type
89 | ) = #externalMacro(module: "Macro", type: "ValueStrategyMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:112:14: warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 | /// - Implementations in ``CustomCodingDecoding`` and ``CustomCodingEncoding`` are required.
111 | @attached(peer)
112 | public macro CustomCoding<Name: CustomDecodingName>(
| `- warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
113 | _ name: Name.Type
114 | ) = #externalMacro(module: "Macro", type: "CustomCodingMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:95:14: warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
93 | /// - Handle encoding errors with ``CustomCodingEncoding/errorHandler`` in ``CustomCodingEncoding``
94 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
95 | public macro Codable() = #externalMacro(module: "Macro", type: "CodableMacro")
| `- warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
96 |
97 | /// Generates `Decodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:109:14: warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
107 | /// ```
108 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
109 | public macro Decodable() = #externalMacro(module: "Macro", type: "DecodableMacro")
| `- warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 |
111 | /// Generates `Encodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:123:14: warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
121 | /// ```
122 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
123 | public macro Encodable() = #externalMacro(module: "Macro", type: "EncodableMacro")
| `- warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
124 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:26:14: warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
24 | /// ```
25 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
26 | public macro OneOfCodable() = #externalMacro(module: "Macro", type: "OneOfCodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
27 |
28 | /// Generates `Decodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:46:14: warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
44 | /// ```
45 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
46 | public macro OneOfDecodable() = #externalMacro(module: "Macro", type: "OneOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
47 |
48 | /// Generates `Encodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:66:14: warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
64 | /// ```
65 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
66 | public macro OneOfEncodable() = #externalMacro(module: "Macro", type: "OneOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
67 |
[560/561] Compiling MacroCodableKit OneOf.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f2001039bb4... done ***
*** Program crashed: Illegal instruction at 0x00007f2001039bb4 ***
Thread 0 "Macro-tool" crashed:
0 0x00007f2001039bb4 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f2001039962 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f200103981d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f20011bcd16 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f20011bcf6e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f200123ebd0 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x0000560caef27562 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in Macro-tool at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:203:31
7 [ra] 0x00007f200187a3bf partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundationEssentials.so
Registers:
rax 0x0000000000000000 0
rdx 0x0000000000000001 1
rcx 0x0000000000000002 2
rbx 0x00005609d2f80ee3 94600194166499
rsi 0x0000000000000007 7
rdi 0x0000560cb2320010 03 00 02 00 02 00 02 00 01 00 01 00 00 00 01 00 ················
rbp 0x00007ffde29da990 d0 a9 9d e2 fd 7f 00 00 62 99 03 01 20 7f 00 00 Щ·âý···b··· ···
rsp 0x00007ffde29da980 20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00 ·······¸·······
r8 0x0000560cb2333440 e3 0e f8 d2 09 56 00 00 58 a9 b3 58 54 aa f0 e4 ã·øÒ·V··X©³XTªðä
r9 0x00007ffde29da770 46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61 Fatal error: loa
r10 0x0000000000000000 0
r11 0xe4f0aa5458b3a958 16496872714300270936
r12 0x0000000000000000 0
r13 0x00007f2001475f70 00 02 00 00 00 00 00 00 ec af 4b 01 20 7f 00 00 ········ì¯K· ···
r14 0x0000000000000001 1
r15 0x0000000000000001 1
rip 0x00007f2001039bb4 0f 0b 48 83 ec 08 48 8d 05 3f cb 46 00 48 8d 3d ··H·ì·H··?ËF·H·=
rflags 0x0000000000010202
cs 0x0033 fs 0x0000 gs 0x0000
Images (17 omitted):
0x0000560caebc9000–0x0000560cb0f2ade8 <no build ID> Macro-tool /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool
0x00007f2000eda000–0x00007f200146eac8 c51192efcf3d046b4eccd29cbc4a02a48194fe47 libswiftCore.so /usr/lib/swift/linux/libswiftCore.so
0x00007f20015e5000–0x00007f2001a61688 <no build ID> libFoundationEssentials.so /usr/lib/swift/linux/libFoundationEssentials.so
Backtrace took 1.60s
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:38:14: warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
36 | /// ```
37 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
38 | public macro AllOfCodable() = #externalMacro(module: "Macro", type: "AllOfCodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
39 |
40 | /// Generates `Decodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:70:14: warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
68 | /// ```
69 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
70 | public macro AllOfDecodable() = #externalMacro(module: "Macro", type: "AllOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
71 |
72 | /// Generates `Encodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:102:14: warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
100 | /// ```
101 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
102 | public macro AllOfEncodable() = #externalMacro(module: "Macro", type: "AllOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
103 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:21:14: warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
19 | /// ```
20 | @attached(peer)
21 | public macro CodingKey(_ key: String) = #externalMacro(module: "Macro", type: "CodingKeyMacro")
| `- warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
22 |
23 | /// Ignores a property in encoding and decoding
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:36:14: warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
34 | /// ```
35 | @attached(peer)
36 | public macro OmitCoding() = #externalMacro(module: "Macro", type: "OmitCodingMacro")
| `- warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
37 |
38 | /// Provides default value if coding fails or there's no such key
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:56:14: warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
54 | /// - During decoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler``
55 | @attached(peer)
56 | public macro DefaultValue<Provider: DefaultValueProvider>(
| `- warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
57 | _ type: Provider.Type
58 | ) = #externalMacro(module: "Macro", type: "DefaultValueMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:87:14: warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
85 | /// - During decoding and encoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler`` or ``CustomCodingEncoding/errorHandler`` respectively.
86 | @attached(peer)
87 | public macro ValueStrategy<Strategy: ValueCodableStrategy>(
| `- warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
88 | _ strategy: Strategy.Type
89 | ) = #externalMacro(module: "Macro", type: "ValueStrategyMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:112:14: warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 | /// - Implementations in ``CustomCodingDecoding`` and ``CustomCodingEncoding`` are required.
111 | @attached(peer)
112 | public macro CustomCoding<Name: CustomDecodingName>(
| `- warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
113 | _ name: Name.Type
114 | ) = #externalMacro(module: "Macro", type: "CustomCodingMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:95:14: warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
93 | /// - Handle encoding errors with ``CustomCodingEncoding/errorHandler`` in ``CustomCodingEncoding``
94 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
95 | public macro Codable() = #externalMacro(module: "Macro", type: "CodableMacro")
| `- warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
96 |
97 | /// Generates `Decodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:109:14: warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
107 | /// ```
108 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
109 | public macro Decodable() = #externalMacro(module: "Macro", type: "DecodableMacro")
| `- warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 |
111 | /// Generates `Encodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:123:14: warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
121 | /// ```
122 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
123 | public macro Encodable() = #externalMacro(module: "Macro", type: "EncodableMacro")
| `- warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
124 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:26:14: warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
24 | /// ```
25 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
26 | public macro OneOfCodable() = #externalMacro(module: "Macro", type: "OneOfCodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
27 |
28 | /// Generates `Decodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:46:14: warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
44 | /// ```
45 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
46 | public macro OneOfDecodable() = #externalMacro(module: "Macro", type: "OneOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
47 |
48 | /// Generates `Encodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:66:14: warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
64 | /// ```
65 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
66 | public macro OneOfEncodable() = #externalMacro(module: "Macro", type: "OneOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
67 |
[561/561] Emitting module MacroCodableKit
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f961f60fbb4... done ***
*** Program crashed: Illegal instruction at 0x00007f961f60fbb4 ***
Thread 0 "Macro-tool" crashed:
0 0x00007f961f60fbb4 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f961f60f962 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f961f60f81d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f961f792d16 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f961f792f6e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f961f814bd0 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x000055a3ad2d7562 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in Macro-tool at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:203:31
7 [ra] 0x00007f961fe503bf partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundationEssentials.so
Registers:
rax 0x0000000000000000 0
rdx 0x0000000000000001 1
rcx 0x0000000000000002 2
rbx 0x000055a6ea5fab9b 94175385070491
rsi 0x0000000000000007 7
rdi 0x000055a3b0638010 03 00 02 00 02 00 02 00 01 00 01 00 00 00 01 00 ················
rbp 0x00007ffde1182da0 e0 2d 18 e1 fd 7f 00 00 62 f9 60 1f 96 7f 00 00 à-·áý···bù`·····
rsp 0x00007ffde1182d90 20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00 ·······¸·······
r8 0x000055a3b064b440 9b ab 5f ea a6 55 00 00 cb 87 a7 66 cc 29 40 ed ·«_ê¦U··Ë·§fÌ)@í
r9 0x00007ffde1182b80 46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61 Fatal error: loa
r10 0x0000000000000000 0
r11 0xed4029cc66a787cb 17095710143370725323
r12 0x0000000000000000 0
r13 0x00007f961fa4bf70 00 02 00 00 00 00 00 00 ec 0f a9 1f 96 7f 00 00 ········ì·©·····
r14 0x0000000000000001 1
r15 0x0000000000000001 1
rip 0x00007f961f60fbb4 0f 0b 48 83 ec 08 48 8d 05 3f cb 46 00 48 8d 3d ··H·ì·H··?ËF·H·=
rflags 0x0000000000010206 PF
cs 0x0033 fs 0x0000 gs 0x0000
Images (17 omitted):
0x000055a3acf79000–0x000055a3af2dade8 <no build ID> Macro-tool /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool
0x00007f961f4b0000–0x00007f961fa44ac8 c51192efcf3d046b4eccd29cbc4a02a48194fe47 libswiftCore.so /usr/lib/swift/linux/libswiftCore.so
0x00007f961fbbb000–0x00007f9620037688 <no build ID> libFoundationEssentials.so /usr/lib/swift/linux/libFoundationEssentials.so
Backtrace took 1.60s
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:38:14: warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
36 | /// ```
37 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
38 | public macro AllOfCodable() = #externalMacro(module: "Macro", type: "AllOfCodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfCodableMacro' could not be found for macro 'AllOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
39 |
40 | /// Generates `Decodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:70:14: warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
68 | /// ```
69 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
70 | public macro AllOfDecodable() = #externalMacro(module: "Macro", type: "AllOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfDecodableMacro' could not be found for macro 'AllOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
71 |
72 | /// Generates `Encodable` conformance following the OpenAPI `allOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/AllOf.swift:102:14: warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
100 | /// ```
101 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
102 | public macro AllOfEncodable() = #externalMacro(module: "Macro", type: "AllOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.AllOfEncodableMacro' could not be found for macro 'AllOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
103 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:21:14: warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
19 | /// ```
20 | @attached(peer)
21 | public macro CodingKey(_ key: String) = #externalMacro(module: "Macro", type: "CodingKeyMacro")
| `- warning: external macro implementation type 'Macro.CodingKeyMacro' could not be found for macro 'CodingKey'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
22 |
23 | /// Ignores a property in encoding and decoding
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:36:14: warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
34 | /// ```
35 | @attached(peer)
36 | public macro OmitCoding() = #externalMacro(module: "Macro", type: "OmitCodingMacro")
| `- warning: external macro implementation type 'Macro.OmitCodingMacro' could not be found for macro 'OmitCoding()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
37 |
38 | /// Provides default value if coding fails or there's no such key
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:56:14: warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
54 | /// - During decoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler``
55 | @attached(peer)
56 | public macro DefaultValue<Provider: DefaultValueProvider>(
| `- warning: external macro implementation type 'Macro.DefaultValueMacro' could not be found for macro 'DefaultValue'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
57 | _ type: Provider.Type
58 | ) = #externalMacro(module: "Macro", type: "DefaultValueMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:87:14: warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
85 | /// - During decoding and encoding, any non-thrown errors encountered is sent to ``CustomCodingDecoding/errorHandler`` or ``CustomCodingEncoding/errorHandler`` respectively.
86 | @attached(peer)
87 | public macro ValueStrategy<Strategy: ValueCodableStrategy>(
| `- warning: external macro implementation type 'Macro.ValueStrategyMacro' could not be found for macro 'ValueStrategy'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
88 | _ strategy: Strategy.Type
89 | ) = #externalMacro(module: "Macro", type: "ValueStrategyMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Annotations.swift:112:14: warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 | /// - Implementations in ``CustomCodingDecoding`` and ``CustomCodingEncoding`` are required.
111 | @attached(peer)
112 | public macro CustomCoding<Name: CustomDecodingName>(
| `- warning: external macro implementation type 'Macro.CustomCodingMacro' could not be found for macro 'CustomCoding'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
113 | _ name: Name.Type
114 | ) = #externalMacro(module: "Macro", type: "CustomCodingMacro")
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:95:14: warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
93 | /// - Handle encoding errors with ``CustomCodingEncoding/errorHandler`` in ``CustomCodingEncoding``
94 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
95 | public macro Codable() = #externalMacro(module: "Macro", type: "CodableMacro")
| `- warning: external macro implementation type 'Macro.CodableMacro' could not be found for macro 'Codable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
96 |
97 | /// Generates `Decodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:109:14: warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
107 | /// ```
108 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
109 | public macro Decodable() = #externalMacro(module: "Macro", type: "DecodableMacro")
| `- warning: external macro implementation type 'Macro.DecodableMacro' could not be found for macro 'Decodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
110 |
111 | /// Generates `Encodable` conformance respecting property annotations.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/Codable.swift:123:14: warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
121 | /// ```
122 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
123 | public macro Encodable() = #externalMacro(module: "Macro", type: "EncodableMacro")
| `- warning: external macro implementation type 'Macro.EncodableMacro' could not be found for macro 'Encodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
124 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:26:14: warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
24 | /// ```
25 | @attached(extension, conformances: Decodable, Encodable, names: named(CodingKeys), named(init(from:)), named(encode(to:)))
26 | public macro OneOfCodable() = #externalMacro(module: "Macro", type: "OneOfCodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfCodableMacro' could not be found for macro 'OneOfCodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
27 |
28 | /// Generates `Decodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:46:14: warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
44 | /// ```
45 | @attached(extension, conformances: Decodable, names: named(CodingKeys), named(init(from:)))
46 | public macro OneOfDecodable() = #externalMacro(module: "Macro", type: "OneOfDecodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfDecodableMacro' could not be found for macro 'OneOfDecodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
47 |
48 | /// Generates `Encodable` conformance following the OpenAPI `oneOf` specification for composition.
/host/spi-builder-workspace/Sources/MacroCodableKit/Macros/OneOf.swift:66:14: warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
64 | /// ```
65 | @attached(extension, conformances: Encodable, names: named(CodingKeys), named(encode(to:)))
66 | public macro OneOfEncodable() = #externalMacro(module: "Macro", type: "OneOfEncodableMacro")
| `- warning: external macro implementation type 'Macro.OneOfEncodableMacro' could not be found for macro 'OneOfEncodable()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Macro-tool' produced malformed response
67 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingDecoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the decoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an decoding operation through ``errorHandler``
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/CustomCoding/CustomCodingEncoding.swift:47:23: warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | ///
46 | /// A closure that captures and handles any errors encountered during the encoding process. The handling might include logging the error for debugging purposes or taking other actions as needed.
47 | public static var errorHandler: ((Error) -> Void)?
| |- warning: static property 'errorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'errorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// Logs an unhandled error during an encoding operation through ``errorHandler``
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30+00:00`
21 | public struct ISO8601DefaultDateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = ISO8601DateFormatter()
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:36:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
34 | /// Example: `2023-10-03`
35 | public struct ISO8601FullDateDateFormatterProvider: DateFormatterProvider {
36 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | let formatter = ISO8601DateFormatter()
38 | formatter.formatOptions = .withFullDate
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift:54:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
52 | /// Example: `2023-10-03T10:15:30.123+00:00`
53 | public struct ISO8601WithFractionalSecondsDateFormatterProvider: DateFormatterProvider {
54 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | let formatter = ISO8601DateFormatter()
56 | formatter.formatOptions = [.withInternetDateTime, .withFractionalSeconds]
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/RFC2822DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30.123+00:00`
21 | public struct RFC2822DateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | let dateFormatter = DateFormatter()
24 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/RFC3339DateFormatterProvider.swift:22:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
20 | /// Example: `2023-10-03T10:15:30Z`
21 | public struct RFC3339DateFormatterProvider: DateFormatterProvider {
22 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | let dateFormatter = DateFormatter()
24 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/YearMonthDayDateFormatterProvider.swift:20:27: warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
18 | /// Example: `2023-10-03`
19 | public struct YearMonthDayDateFormatterProvider: DateFormatterProvider {
20 | public static let dateFormatter: DateFormatterProtocol = {
| |- warning: static property 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'any DateFormatterProtocol' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | let dateFormatter = DateFormatter()
22 | dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
/host/spi-builder-workspace/Sources/MacroCodableKit/Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift:9:17: note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
7 |
8 | /// Abstracts date formatters
9 | public protocol DateFormatterProtocol {
| `- note: protocol 'DateFormatterProtocol' does not conform to the 'Sendable' protocol
10 | /// Converts a `Date` object into a string representation.
11 | func string(from date: Date) -> String
Build complete! (194.50s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "510.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-syntax.git"
},
{
"identity" : "swift-format",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "510.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-format.git"
},
{
"identity" : "swift-macro-toolkit",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/stackotter/swift-macro-toolkit"
},
{
"identity" : "swift-macro-testing",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-macro-testing"
}
],
"manifest_display_name" : "macro-codable-kit",
"name" : "macro-codable-kit",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "MacroCodableKit",
"targets" : [
"MacroCodableKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Macro",
"targets" : [
"Macro"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "MacroCodableKitTests",
"module_type" : "SwiftTarget",
"name" : "MacroCodableKitTests",
"path" : "Tests/MacroCodableKitTests",
"product_dependencies" : [
"SwiftSyntaxMacrosTestSupport",
"MacroTesting"
],
"sources" : [
"AllOfCodable/AllOfCodableMacroTests.swift",
"AllOfCodable/AllOfDecodableMacroTests.swift",
"AllOfCodable/AllOfEncodableMacroTests.swift",
"AllOfCodable/AllOfMacroDecodingTests.swift",
"Annotations/AnnotationTests.swift",
"Annotations/Base64StrategyTests.swift",
"Annotations/DateValueStrategyTests.swift",
"Annotations/DefaultValueTests.swift",
"Annotations/Macro/AnnotationsMixMacroTests.swift",
"Annotations/Macro/CustomCodingMacroTests.swift",
"Annotations/Macro/DefaultValueMacroTests.swift",
"Annotations/Macro/DiagnosticTests.swift",
"Annotations/Macro/ValueStrategyMacroTests.swift",
"Annotations/SafeCodingArrayTests.swift",
"Annotations/SafeCodingDictionaryTests.swift",
"Codable/CodableMacroTests.swift",
"Codable/CodableTests.swift",
"Codable/DecodableMacroTests.swift",
"Codable/EncodableMacroTests.swift",
"Helpers/Misc.swift",
"OneOfCodable/OneOfCodableMacroTests.swift",
"OneOfCodable/OneOfDecodableMacroTests.swift",
"OneOfCodable/OneOfEncodableMacroTests.swift",
"OneOfCodable/OneOfMacroDecodingTests.swift"
],
"target_dependencies" : [
"Macro",
"MacroCodableKit"
],
"type" : "test"
},
{
"c99name" : "MacroCodableKit",
"module_type" : "SwiftTarget",
"name" : "MacroCodableKit",
"path" : "Sources/MacroCodableKit",
"product_memberships" : [
"MacroCodableKit"
],
"sources" : [
"Macros/AllOf.swift",
"Macros/Annotations.swift",
"Macros/Codable.swift",
"Macros/OneOf.swift",
"Misc/CustomCoding/CustomCodingDecoding.swift",
"Misc/CustomCoding/CustomCodingEncoding.swift",
"Misc/CustomCoding/Predefined/SafeDecoding/SafeDecoding+Array.swift",
"Misc/CustomCoding/Predefined/SafeDecoding/SafeDecoding+Dictionary.swift",
"Misc/CustomCoding/Predefined/SafeDecoding/SafeDecoding.swift",
"Misc/CustomCoding/Types/CustomCodingDecoding+Types.swift",
"Misc/CustomCoding/Types/CustomCodingEncoding+Types.swift",
"Misc/CustomDecodingName.swift",
"Misc/DefaultProviders/BoolFalse.swift",
"Misc/DefaultProviders/BoolTrue.swift",
"Misc/DefaultProviders/DoubleZero.swift",
"Misc/DefaultProviders/EmptyString.swift",
"Misc/DefaultProviders/IntZero.swift",
"Misc/DefaultValueStrategy.swift",
"Misc/OptionalProtocol.swift",
"Misc/ValueCodableStrategies/Base64Strategy.swift",
"Misc/ValueCodableStrategies/Date/DateFormatterStrategy.swift",
"Misc/ValueCodableStrategies/Date/ISO8601DateFormatterProvider.swift",
"Misc/ValueCodableStrategies/Date/RFC2822DateFormatterProvider.swift",
"Misc/ValueCodableStrategies/Date/RFC3339DateFormatterProvider.swift",
"Misc/ValueCodableStrategies/Date/TimestampedDate.swift",
"Misc/ValueCodableStrategies/Date/YearMonthDayDateFormatterProvider.swift",
"Misc/ValueCodableStrategy.swift"
],
"target_dependencies" : [
"Macro"
],
"type" : "library"
},
{
"c99name" : "Macro",
"module_type" : "SwiftTarget",
"name" : "Macro",
"path" : "Sources/Macro",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"MacroToolkit",
"SwiftFormat"
],
"product_memberships" : [
"MacroCodableKit",
"Macro"
],
"sources" : [
"Helpers/CodeBuilder+Helpers.swift",
"Helpers/Conformance+Helpers.swift",
"Helpers/DiagnosticMessage+Helpers.swift",
"Helpers/MacroToolkit+Helpers.swift",
"Helpers/MessageID+Helpers.swift",
"Helpers/String+Helpers.swift",
"Helpers/Type+Helpers.swift",
"Macro/AllOfCodable/AllOfCodable.swift",
"Macro/AllOfCodable/AllOfDecodableMacro.swift",
"Macro/AllOfCodable/AllOfEncodableMacro.swift",
"Macro/AllOfCodable/AllOfMacroBase.swift",
"Macro/Codable/CodableMacro.swift",
"Macro/Codable/CodableMacroBase.swift",
"Macro/Codable/DecodableMacro.swift",
"Macro/Codable/EncodableMacro.swift",
"Macro/CodingKey/CodingKey.swift",
"Macro/CodingKey/CodingKeyMacro.swift",
"Macro/CustomCoding/CustomCoding.swift",
"Macro/CustomCoding/CustomCodingMacro.swift",
"Macro/DefaultValue/DefaultValue.swift",
"Macro/DefaultValue/DefaultValueMacro.swift",
"Macro/OmitCoding/OmitCoding.swift",
"Macro/OmitCoding/OmitCodingMacro.swift",
"Macro/OneOfCodable/OneOfCodable.swift",
"Macro/OneOfCodable/OneOfDecodable.swift",
"Macro/OneOfCodable/OneOfEncodable.swift",
"Macro/OneOfCodable/OneOfMacroBase.Diagnostic.swift",
"Macro/OneOfCodable/OneOfMacroBase.Expander.swift",
"Macro/OneOfCodable/OneOfMacroBase.swift",
"Macro/ValueStrategy/ValueStrategy.swift",
"Macro/ValueStrategy/ValueStrategyMacro.swift",
"Misc/ClassDecl.swift",
"Misc/CodableBuilderFactory.swift",
"Misc/CodableBuilders/CodableBuildersMisc.swift",
"Misc/CodableBuilders/CodableBuildingData.swift",
"Misc/CodableBuilders/CodingKeysBuilder+Enum.swift",
"Misc/CodableBuilders/CodingKeysBuilder+Instance.swift",
"Misc/CodableBuilders/CodingKeysBuilder.swift",
"Misc/CodableBuilders/DecodableBuilder+Instance.swift",
"Misc/CodableBuilders/DecodableBuilder.swift",
"Misc/CodableBuilders/EncodableBuilder+Instance.swift",
"Misc/CodableBuilders/EncodableBuilder.swift",
"Misc/CodableBuilders/Variable+Diagnostic.swift",
"Misc/CodableBuilders/Variable+KnownAttributes.swift",
"Misc/CodeBuilder/CodeBuilder.swift",
"Misc/CodeBuilder/ExtensionBuilder.swift",
"Misc/CommonDiagnostic.swift",
"Misc/Conformance.swift",
"Misc/ConformanceDiagnosticChecker.swift",
"Misc/Diagnostic.swift",
"Misc/Instance.swift",
"Misc/InstanceExpander.swift",
"Misc/MacroCurrent.swift",
"Misc/SwiftFormatter.swift",
"Plugin.swift"
],
"type" : "macro"
}
],
"tools_version" : "5.9"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.