The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftPropertyLaws, reference v2.0.0 (eeef84), with Swift 6.3 for Wasm on 5 May 2026 07:42:04 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Reference: v2.0.0
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/Joseph-Cursio/SwiftPropertyLaws
 * tag               v2.0.0     -> FETCH_HEAD
HEAD is now at eeef84e docs(CLAUDE.md): rename SwiftProtocolLaws → SwiftPropertyLaws (mechanical pass 3/3)
Cloned https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Revision (git rev-parse @):
eeef84eb1285c0ff75516d1e781841ac86a22014
SUCCESS checkout https://github.com/Joseph-Cursio/SwiftPropertyLaws.git at v2.0.0
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Fetching https://github.com/x-sheep/swift-property-based.git
Fetching https://github.com/swiftlang/swift-syntax.git
[1/1261] Fetching swift-property-based
[1262/76306] Fetching swift-property-based, swift-syntax
Fetched https://github.com/x-sheep/swift-property-based.git from cache (9.17s)
Fetched https://github.com/swiftlang/swift-syntax.git from cache (9.25s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 600.0.1 (12.05s)
Computing version for https://github.com/x-sheep/swift-property-based.git
Computed https://github.com/x-sheep/swift-property-based.git at 1.2.0 (0.69s)
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 600.0.1
Creating working copy for https://github.com/x-sheep/swift-property-based.git
Working copy of https://github.com/x-sheep/swift-property-based.git resolved at 1.2.0
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:36:59: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 34 |         let tool = try context.tool(named: "PropertyLawDiscoveryTool")
 35 |         let process = Process()
 36 |         process.executableURL = URL(fileURLWithPath: tool.path.string)
    |                                                           |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                                                           `- note: use 'url' instead
 37 |         var toolArgs: [String] = [
 38 |             "--target", target,
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:36:64: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 34 |         let tool = try context.tool(named: "PropertyLawDiscoveryTool")
 35 |         let process = Process()
 36 |         process.executableURL = URL(fileURLWithPath: tool.path.string)
    |                                                                `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 37 |         var toolArgs: [String] = [
 38 |             "--target", target,
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:67:40: warning: 'directory' is deprecated: renamed to 'directoryURL' [#DeprecatedDeclaration]
 65 |     /// doesn't exist; commit 5 will create the dir if missing.
 66 |     private func defaultOutputPath(for target: Target, in context: PluginContext) -> String {
 67 |         let testsDir = context.package.directory
    |                                        |- warning: 'directory' is deprecated: renamed to 'directoryURL' [#DeprecatedDeclaration]
    |                                        `- note: use 'directoryURL' instead
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:68:14: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 66 |     private func defaultOutputPath(for target: Target, in context: PluginContext) -> String {
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
    |              `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
 70 |     }
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:69:25: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
    |                         `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 70 |     }
 71 |
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:69:73: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
    |                                                                         `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 70 |     }
 71 |
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:75:26: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 73 |         guard let sourceModuleTarget = target as? SourceModuleTarget else { return [] }
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
    |                          |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                          `- note: use 'url' instead
 76 |             .map { $0.path.string }
 77 |             .sorted()
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:75:31: warning: 'extension' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 73 |         guard let sourceModuleTarget = target as? SourceModuleTarget else { return [] }
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
    |                               `- warning: 'extension' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 76 |             .map { $0.path.string }
 77 |             .sorted()
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:76:23: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
 76 |             .map { $0.path.string }
    |                       |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                       `- note: use 'url' instead
 77 |             .sorted()
 78 |     }
/host/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:76:28: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
 76 |             .map { $0.path.string }
    |                            `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 77 |             .sorted()
 78 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1/1] Compiling plugin PropertyLawDiscoveryPlugin
Building for debugging...
[1/64] Write sources
[31/64] Compiling _SwiftSyntaxCShims dummy.c
[33/64] Write swift-version-24593BA9C3E375BF.txt
[35/86] Emitting module SwiftSyntax509
[36/86] Emitting module PropertyLawCore
[37/86] Compiling SwiftSyntax509 Empty.swift
[39/87] Compiling SwiftSyntax600 Empty.swift
[40/87] Emitting module SwiftSyntax600
[41/87] Compiling PropertyLawCore MemberwiseEmitter.swift
[42/88] Compiling SwiftSyntax510 Empty.swift
[43/88] Emitting module SwiftSyntax510
[46/118] Emitting module SwiftSyntax600
[47/118] Compiling SwiftSyntax600 Empty.swift
[48/118] Compiling PropertyLawCore KnownProtocol.swift
[49/119] Compiling PropertyLawCore DerivationStrategy.swift
[50/119] Compiling PropertyLawCore GeneratorExpressionEmitter.swift
[53/149] Compiling SwiftSyntax510 Empty.swift
[54/149] Emitting module SwiftSyntax510
[55/150] Compiling PropertyLawCore KnownProtocol.swift
[56/150] Emitting module SwiftSyntax509
[57/150] Compiling SwiftSyntax509 Empty.swift
[59/152] Compiling PropertyLawCore GeneratorExpressionEmitter.swift
[60/152] Compiling PropertyLawCore MemberwiseEmitter.swift
[61/152] Wrapping AST for SwiftSyntax510 for debugging
[62/173] Wrapping AST for SwiftSyntax600 for debugging
[65/188] Emitting module PropertyLawCore
[66/188] Compiling PropertyLawCore DerivationStrategy.swift
[66/210] Wrapping AST for SwiftSyntax510 for debugging
[67/216] Wrapping AST for SwiftSyntax509 for debugging
[70/216] Wrapping AST for PropertyLawCore for debugging
[73/280] Compiling SwiftSyntax AbsolutePosition.swift
[74/280] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[75/280] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[76/280] Compiling SwiftSyntax Assert.swift
[77/280] Compiling SwiftSyntax BumpPtrAllocator.swift
[78/280] Compiling SwiftSyntax CommonAncestor.swift
[79/280] Compiling SwiftSyntax Convenience.swift
[80/280] Compiling SwiftSyntax CustomTraits.swift
[81/280] Compiling SwiftSyntax Identifier.swift
[82/288] Compiling SwiftSyntax SyntaxNodeFactory.swift
[83/288] Compiling SwiftSyntax SyntaxNodeStructure.swift
[84/288] Compiling SwiftSyntax SyntaxProtocol.swift
[85/288] Compiling SwiftSyntax SyntaxText.swift
[86/288] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[87/288] Compiling SwiftSyntax TokenDiagnostic.swift
[88/288] Compiling SwiftSyntax TokenSequence.swift
[89/288] Compiling SwiftSyntax TokenSyntax.swift
[90/288] Compiling SwiftSyntax Trivia.swift
[94/288] Compiling SwiftSyntax SourcePresence.swift
[96/292] Compiling SwiftSyntax MemoryLayout.swift
[97/292] Compiling SwiftSyntax MissingNodeInitializers.swift
[98/292] Compiling SwiftSyntax RawSyntax.swift
[102/292] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[103/292] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[104/292] Compiling SwiftSyntax RawSyntaxTokenView.swift
[105/292] Compiling SwiftSyntax SourceEdit.swift
[106/292] Compiling SwiftSyntax SourceLength.swift
[107/292] Compiling SwiftSyntax SourceLocation.swift
[121/304] Emitting module PropertyBased
[168/304] Compiling PropertyBased Shrink+Tuple.swift
[169/304] Compiling PropertyBased Shrink.swift
[170/304] Compiling PropertyBased Xoshiro.swift
[171/304] Compiling PropertyBased Zip.swift
[181/363] Compiling PropertyLawKit CheckResult.swift
[182/363] Compiling PropertyLawKit LawSuppression.swift
[183/363] Compiling PropertyLawKit PropertyLawViolation.swift
[184/363] Compiling PropertyLawKit Seed.swift
[186/364] Emitting module PropertyLawKit
[187/430] Compiling PropertyLawKit AggregateDriver.swift
[188/430] Compiling PropertyLawKit SwiftPropertyBasedBackend.swift
[189/430] Compiling PropertyLawKit CoverageAccumulator.swift
[190/430] Compiling PropertyLawKit LawSuppressionPolicy.swift
[191/430] Compiling PropertyLawKit NearMissCollector.swift
[192/430] Compiling PropertyLawKit PerLawDriver.swift
[193/430] Compiling PropertyLawKit ReplayEnvironmentValidator.swift
[194/430] Compiling PropertyLawKit ViolationFormatter.swift
[195/430] Compiling PropertyLawKit CheckResult.swift
[196/430] Compiling PropertyLawKit LawSuppression.swift
[197/430] Compiling PropertyLawKit PropertyLawViolation.swift
[198/430] Compiling PropertyLawKit Seed.swift
[199/430] Compiling PropertyLawKit SequenceLawOptions.swift
[200/430] Compiling PropertyLawKit StrictnessTier.swift
[201/430] Compiling PropertyLawKit TrialBudget.swift
[202/430] Compiling PropertyLawKit PropertyLawKit.swift
[203/430] Compiling PropertyLawKit AdditiveArithmeticLaws.swift
[204/430] Compiling PropertyLawKit BidirectionalCollectionLaws.swift
[205/430] Compiling PropertyLawKit BinaryFloatingPointLaws.swift
[206/430] Compiling PropertyLawKit BinaryIntegerLaws.swift
[207/430] Compiling PropertyLawKit CaseIterableLaws.swift
[208/430] Compiling PropertyLawKit CodableLaws.swift
[209/430] Compiling PropertyLawKit CollectionLaws.swift
[210/430] Compiling PropertyLawKit CommutativeMonoid.swift
[211/430] Compiling PropertyLawKit CommutativeMonoidLaws.swift
[212/430] Emitting module PropertyLawKit
[213/438] Compiling PropertyLawKit CodableCodec.swift
[214/438] Compiling PropertyLawKit CodableLawConfig.swift
[215/438] Compiling PropertyLawKit CodableRoundTripMode.swift
[216/438] Compiling PropertyLawKit EnforcementMode.swift
[217/438] Compiling PropertyLawKit Environment.swift
[218/438] Compiling PropertyLawKit LawCheckOptions.swift
[219/438] Compiling PropertyLawKit LawIdentifier.swift
[220/438] Compiling PropertyLawKit LawSelection.swift
[221/438] Compiling PropertyLawKit PropertyBackend.swift
[222/438] Compiling PropertyLawKit RandomAccessCollectionLaws.swift
[223/438] Compiling PropertyLawKit RangeReplaceableCollectionLaws.swift
[224/438] Compiling PropertyLawKit RawRepresentableLaws.swift
[225/438] Compiling PropertyLawKit ReplayEnvironmentMismatch.swift
[226/438] Compiling PropertyLawKit Semigroup.swift
[227/438] Compiling PropertyLawKit SemigroupLaws.swift
[228/438] Compiling PropertyLawKit Semilattice.swift
[229/438] Compiling PropertyLawKit IdentifiableLaws.swift
[230/438] Compiling PropertyLawKit IteratorProtocolLaws.swift
[231/438] Compiling PropertyLawKit LosslessStringConvertibleLaws.swift
[232/438] Compiling PropertyLawKit Monoid.swift
[233/438] Compiling PropertyLawKit MonoidLaws.swift
[234/438] Compiling PropertyLawKit MutableCollectionLaws.swift
[235/438] Compiling PropertyLawKit NumericGenerators.swift
[236/438] Compiling PropertyLawKit NumericLaws.swift
[237/438] Compiling PropertyLawKit ComparableLaws.swift
[238/438] Compiling PropertyLawKit CoverageClassifier.swift
[239/438] Compiling PropertyLawKit EquatableLaws.swift
[240/438] Compiling PropertyLawKit FixedWidthIntegerLaws.swift
[241/438] Compiling PropertyLawKit FloatingPointLaws.swift
[242/438] Compiling PropertyLawKit Group.swift
[243/438] Compiling PropertyLawKit GroupLaws.swift
[244/438] Compiling PropertyLawKit HashableLaws.swift
[253/438] Compiling PropertyLawKit SemilatticeLaws.swift
[254/438] Compiling PropertyLawKit SequenceLaws.swift
[255/438] Compiling PropertyLawKit SetAlgebraLaws.swift
[256/438] Compiling PropertyLawKit SignedIntegerLaws.swift
[257/438] Compiling PropertyLawKit SignedNumericLaws.swift
[258/438] Compiling PropertyLawKit StrideableLaws.swift
[259/438] Compiling PropertyLawKit StringProtocolLaws.swift
[260/438] Compiling PropertyLawKit UnsignedIntegerLaws.swift
[269/438] Emitting module SwiftSyntax
[387/440] Compiling SwiftSyntax SyntaxNodesEF.swift
[388/440] Compiling SwiftSyntax SyntaxNodesGHI.swift
[389/440] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[390/440] Compiling SwiftSyntax SyntaxNodesOP.swift
[391/440] Compiling SwiftSyntax SyntaxNodesQRS.swift
[392/440] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[411/441] Wrapping AST for SwiftSyntax for debugging
[421/482] Compiling SwiftParser SwiftParserCompatibility.swift
[422/482] Compiling SwiftParser SwiftVersion.swift
[423/482] Compiling SwiftParser SyntaxUtils.swift
[424/482] Compiling SwiftParser TokenConsumer.swift
[425/482] Compiling SwiftParser TokenPrecedence.swift
[426/490] Wrapping AST for SwiftSyntax for debugging
[428/545] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[429/546] Compiling SwiftDiagnostics Message.swift
[430/546] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[431/546] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[432/546] Compiling SwiftBasicFormat Syntax+Extensions.swift
[433/546] Emitting module SwiftBasicFormat
[434/546] Compiling SwiftDiagnostics Note.swift
[435/546] Compiling SwiftParser Attributes.swift
[436/546] Compiling SwiftParser Availability.swift
[437/546] Emitting module SwiftDiagnostics
[438/546] Compiling SwiftParser CharacterInfo.swift
[439/546] Compiling SwiftParser CollectionNodes+Parsable.swift
[440/546] Compiling SwiftDiagnostics FixIt.swift
[441/546] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[442/546] Compiling SwiftBasicFormat InferIndentation.swift
[443/546] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[444/547] Wrapping AST for SwiftDiagnostics for debugging
[446/547] Compiling SwiftParser LexemeSequence.swift
[447/547] Compiling SwiftParser Lexer.swift
[448/547] Compiling SwiftParser RegexLiteralLexer.swift
[449/547] Compiling SwiftParser UnicodeScalarExtensions.swift
[450/547] Compiling SwiftParser Lookahead.swift
[451/547] Compiling SwiftParser LoopProgressCondition.swift
[452/547] Emitting module SwiftParser
[453/547] Compiling SwiftBasicFormat BasicFormat.swift
[454/548] Compiling SwiftParser Modifiers.swift
[455/548] Compiling SwiftParser Names.swift
[456/548] Compiling SwiftParser Nominals.swift
[457/548] Compiling SwiftParser Parameters.swift
[458/548] Compiling SwiftParser ParseSourceFile.swift
[459/548] Compiling SwiftParser Parser.swift
[460/548] Wrapping AST for SwiftBasicFormat for debugging
[468/553] Compiling SwiftParser Recovery.swift
[469/553] Compiling SwiftParser Specifiers.swift
[470/553] Compiling SwiftParser Statements.swift
[471/553] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[472/553] Compiling SwiftParser StringLiterals.swift
[483/553] Compiling SwiftParser Declarations.swift
[484/553] Compiling SwiftParser Directives.swift
[485/553] Emitting module SwiftParser
[486/553] Compiling SwiftParser SwiftParserCompatibility.swift
[487/553] Compiling SwiftParser SwiftVersion.swift
[488/553] Compiling SwiftParser SyntaxUtils.swift
[489/553] Compiling SwiftParser TokenConsumer.swift
[490/553] Compiling SwiftParser TokenPrecedence.swift
[491/553] Compiling SwiftParser TokenSpec.swift
[493/553] Compiling SwiftParser TokenSpecSet.swift
[494/553] Compiling SwiftParser TopLevel.swift
[495/553] Compiling SwiftParser TriviaParser.swift
[496/553] Compiling SwiftParser Types.swift
[502/553] Compiling SwiftParser Patterns.swift
[508/553] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[509/553] Compiling SwiftParser Expressions.swift
[510/553] Compiling SwiftParser IncrementalParseTransition.swift
[511/553] Compiling SwiftParser IsValidIdentifier.swift
[512/553] Compiling SwiftParser Cursor.swift
[513/553] Compiling SwiftParser Lexeme.swift
[514/553] Compiling SwiftParser ExperimentalFeatures.swift
[515/553] Compiling SwiftParser IsLexerClassified.swift
[516/553] Compiling SwiftParser LayoutNodes+Parsable.swift
[517/553] Compiling SwiftParser Parser+TokenSpecSet.swift
[518/553] Compiling SwiftParser TokenSpecStaticMembers.swift
[519/554] Wrapping AST for SwiftParser for debugging
[521/564] Compiling PropertyLawDiscoveryTool AdvisorySuggester.swift
[522/564] Compiling PropertyLawDiscoveryTool ConformanceMap.swift
[523/564] Compiling PropertyLawDiscoveryTool GeneratedFileEmitter.swift
[524/564] Compiling PropertyLawDiscoveryTool ModuleScanner.swift
[527/564] Compiling PropertyLawDiscoveryTool SuppressionParser.swift
[534/565] Compiling PropertyLawDiscoveryTool WitnessFinder.swift
[535/565] Compiling PropertyLawDiscoveryTool RoundTripFinder.swift
[536/565] Compiling PropertyLawDiscoveryTool RoundTripSuggester.swift
[537/565] Emitting module PropertyLawDiscoveryTool
[540/565] Compiling PropertyLawDiscoveryTool PluginMemberInspector.swift
[541/565] Compiling PropertyLawDiscoveryTool PropertyLawDiscoveryTool.swift
[544/566] Wrapping AST for PropertyLawDiscoveryTool for debugging
[545/566] Write Objects.LinkFileList
[552/573] Wrapping AST for SwiftParser for debugging
[554/600] Compiling PropertyLawDiscoveryTool SuppressionParser.swift
[555/601] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[556/601] Compiling PropertyLawDiscoveryTool PluginMemberInspector.swift
[557/602] Compiling SwiftOperators PrecedenceGroup.swift
[558/603] Compiling SwiftOperators OperatorError.swift
[559/603] Compiling SwiftOperators OperatorTable+Defaults.swift
[560/603] Compiling SwiftOperators Operator.swift
[561/603] Compiling SwiftOperators OperatorError+Diagnostics.swift
[562/603] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[563/603] Compiling SwiftOperators PrecedenceGraph.swift
[564/603] Compiling SwiftOperators OperatorTable.swift
[565/603] Compiling PropertyLawDiscoveryTool WitnessFinder.swift
[566/603] Emitting module SwiftOperators
[567/603] Compiling PropertyLawDiscoveryTool RoundTripFinder.swift
[568/603] Compiling PropertyLawDiscoveryTool RoundTripSuggester.swift
[569/603] Compiling SwiftOperators SyntaxSynthesis.swift
[570/603] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[571/603] Compiling SwiftParserDiagnostics Utils.swift
[572/603] Compiling SwiftOperators OperatorTable+Semantics.swift
[573/603] Compiling PropertyLawDiscoveryTool PropertyLawDiscoveryTool.swift
[574/603] Compiling SwiftOperators OperatorTable+Folding.swift
[580/604] Emitting module PropertyLawDiscoveryTool
[581/605] Wrapping AST for SwiftOperators for debugging
[582/605] Wrapping AST for PropertyLawDiscoveryTool for debugging
[583/605] Write Objects.LinkFileList
[585/605] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[587/605] Linking PropertyLawDiscoveryTool.wasm
[588/605] Linking PropertyLawDiscoveryTool-tool
[592/605] Emitting module SwiftParserDiagnostics
[593/605] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[594/605] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[595/605] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[596/605] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[597/606] Wrapping AST for SwiftParserDiagnostics for debugging
[599/621] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[600/621] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[601/622] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[602/622] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[603/622] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[604/622] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[605/622] Compiling SwiftSyntaxBuilder Indenter.swift
[606/622] Compiling SwiftSyntaxBuilder ListBuilder.swift
[607/622] Emitting module SwiftSyntaxBuilder
[608/622] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[609/622] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[610/622] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[611/622] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[612/622] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[613/622] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[614/622] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[615/623] Wrapping AST for SwiftSyntaxBuilder for debugging
[617/640] Emitting module SwiftSyntaxMacros
[618/642] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[619/642] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[620/642] Compiling SwiftSyntaxMacros Macro.swift
[621/642] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[622/642] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[623/642] Compiling SwiftSyntaxMacros Macro+Format.swift
[624/642] Compiling SwiftSyntaxMacros MemberMacro.swift
[625/642] Compiling SwiftSyntaxMacros PeerMacro.swift
[626/642] Compiling SwiftSyntaxMacros AccessorMacro.swift
[627/642] Compiling SwiftSyntaxMacros AttachedMacro.swift
[628/642] Compiling SwiftSyntaxMacros BodyMacro.swift
[629/642] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[630/642] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[631/642] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[632/642] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[633/642] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[634/642] Compiling SwiftSyntaxMacros PreambleMacro.swift
[635/642] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[636/643] Wrapping AST for SwiftSyntaxMacros for debugging
[638/652] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[639/653] Emitting module SwiftSyntaxMacroExpansion
[640/653] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[641/653] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[642/653] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[643/653] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[644/653] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[645/653] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[646/653] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[647/653] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[648/655] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[650/666] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[651/666] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[652/666] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[653/667] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[654/667] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[655/667] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[656/667] Emitting module SwiftCompilerPluginMessageHandling
[657/667] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[658/667] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[659/667] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[660/667] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[661/667] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[662/667] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[663/668] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[665/670] Emitting module SwiftCompilerPlugin
[666/670] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[667/677] Wrapping AST for SwiftCompilerPlugin for debugging
[669/677] Compiling PropertyLawMacroImpl Diagnostics.swift
[670/677] Compiling PropertyLawMacroImpl DiscoverableMacro.swift
[671/677] Emitting module PropertyLawMacroImpl
[672/677] Compiling PropertyLawMacroImpl Plugin.swift
[673/677] Compiling PropertyLawMacroImpl MemberBlockInspector.swift
[674/677] Compiling PropertyLawMacroImpl PropertyLawSuiteMacro.swift
[675/678] Wrapping AST for PropertyLawMacroImpl for debugging
[676/678] Write Objects.LinkFileList
[677/678] Linking PropertyLawMacroImpl-tool
[679/682] Emitting module PropertyLawMacro
[680/682] Compiling PropertyLawMacro PropertyLawMacro.swift
[681/682] Emitting module PropertyLawMacro
[682/682] Compiling PropertyLawMacro PropertyLawMacro.swift
Build complete! (381.36s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-property-based",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/x-sheep/swift-property-based.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "600.0.0",
            "upper_bound" : "601.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "SwiftPropertyLaws",
  "name" : "SwiftPropertyLaws",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "watchos",
      "version" : "10.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "PropertyLawKit",
      "targets" : [
        "PropertyLawKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawMacro",
      "targets" : [
        "PropertyLawMacro"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawCore",
      "targets" : [
        "PropertyLawCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawDiscoveryTool",
      "targets" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "PropertyLawMacroImpl",
      "targets" : [
        "PropertyLawMacroImpl"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PropertyLawMacroTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacroTests",
      "path" : "Tests/PropertyLawMacroTests",
      "product_dependencies" : [
        "PropertyBased",
        "SwiftSyntaxMacros",
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "DiagnosticsTests.swift",
        "DiscoverableMacroTests.swift",
        "EndToEndTests.swift",
        "MacroExpansionMultiTypeTests.swift",
        "MacroExpansionTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawMacro",
        "PropertyLawMacroImpl",
        "PropertyLawKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawMacroImpl",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacroImpl",
      "path" : "Sources/PropertyLawMacroImpl",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin",
        "SwiftDiagnostics"
      ],
      "product_memberships" : [
        "PropertyLawMacro",
        "PropertyLawMacroImpl"
      ],
      "sources" : [
        "Diagnostics.swift",
        "DiscoverableMacro.swift",
        "MemberBlockInspector.swift",
        "Plugin.swift",
        "PropertyLawSuiteMacro.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "PropertyLawMacro",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacro",
      "path" : "Sources/PropertyLawMacro",
      "product_memberships" : [
        "PropertyLawMacro"
      ],
      "sources" : [
        "PropertyLawMacro.swift"
      ],
      "target_dependencies" : [
        "PropertyLawKit",
        "PropertyLawMacroImpl"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PropertyLawKitTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawKitTests",
      "path" : "Tests/PropertyLawKitTests",
      "product_dependencies" : [
        "PropertyBased"
      ],
      "sources" : [
        "AdditiveArithmeticLawsTests.swift",
        "BidirectionalCollectionLawsTests.swift",
        "BinaryFloatingPointLawsTests.swift",
        "BinaryIntegerLawsTests.swift",
        "BudgetTests.swift",
        "CaseIterableLawsTests.swift",
        "CodableLawsTests.swift",
        "CollectionLawsTests.swift",
        "CommutativeMonoidLawsTests.swift",
        "ComparableLawsTests.swift",
        "CoverageHintsTests.swift",
        "DownstreamPropertyBackendSmokeTests.swift",
        "EnforcementTests.swift",
        "EquatableLawsTests.swift",
        "ErrorBoxTests.swift",
        "FixedWidthIntegerLawsTests.swift",
        "FloatingPointLawsTests.swift",
        "GroupLawsTests.swift",
        "HashableLawsTests.swift",
        "Helpers/Generators.swift",
        "Helpers/SeededValueType.swift",
        "IdentifiableLawsTests.swift",
        "IteratorProtocolLawsTests.swift",
        "LawIdentifierTests.swift",
        "LosslessStringConvertibleLawsTests.swift",
        "MonoidLawsTests.swift",
        "MutableCollectionLawsTests.swift",
        "NearMissTests.swift",
        "NumericLawsTests.swift",
        "PlantedBugs/PlantedAdditiveArithmeticViolators.swift",
        "PlantedBugs/PlantedBinaryIntegerViolators.swift",
        "PlantedBugs/PlantedBugCollectionRefinementsDetectionTests.swift",
        "PlantedBugs/PlantedBugCollectionsDetectionTests.swift",
        "PlantedBugs/PlantedBugDetectionTests.swift",
        "PlantedBugs/PlantedBugIntegerDetectionTests.swift",
        "PlantedBugs/PlantedBugMonoidDetectionTests.swift",
        "PlantedBugs/PlantedBugNumericDetectionTests.swift",
        "PlantedBugs/PlantedBugSemigroupDetectionTests.swift",
        "PlantedBugs/PlantedCaseIterableViolators.swift",
        "PlantedBugs/PlantedCodableViolators.swift",
        "PlantedBugs/PlantedCollectionRefinementsViolators.swift",
        "PlantedBugs/PlantedCollectionViolators.swift",
        "PlantedBugs/PlantedComparableViolators.swift",
        "PlantedBugs/PlantedEquatableViolators.swift",
        "PlantedBugs/PlantedFixedWidthIntegerViolators.swift",
        "PlantedBugs/PlantedHashableViolators.swift",
        "PlantedBugs/PlantedIdentifiableViolators.swift",
        "PlantedBugs/PlantedIteratorViolators.swift",
        "PlantedBugs/PlantedLosslessStringConvertibleViolators.swift",
        "PlantedBugs/PlantedMonoidViolators.swift",
        "PlantedBugs/PlantedNumericViolators.swift",
        "PlantedBugs/PlantedRawRepresentableViolators.swift",
        "PlantedBugs/PlantedSemigroupViolators.swift",
        "PlantedBugs/PlantedSequenceViolators.swift",
        "PlantedBugs/PlantedSetAlgebraViolators.swift",
        "PlantedBugs/PlantedSignedIntegerViolators.swift",
        "PlantedBugs/PlantedSignedNumericViolators.swift",
        "PlantedBugs/PlantedStrideableViolators.swift",
        "PlantedBugs/PlantedUnsignedIntegerViolators.swift",
        "RandomAccessCollectionLawsTests.swift",
        "RangeReplaceableCollectionLawsTests.swift",
        "RawRepresentableLawsTests.swift",
        "ReplayValidationTests.swift",
        "SeedTests.swift",
        "SemigroupLawsTests.swift",
        "SemilatticeLawsTests.swift",
        "SequenceLawsTests.swift",
        "SetAlgebraLawsTests.swift",
        "SignedNumericLawsTests.swift",
        "StrideableLawsTests.swift",
        "StringProtocolLawsTests.swift",
        "SuppressionTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawKit",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawKit",
      "path" : "Sources/PropertyLawKit",
      "product_dependencies" : [
        "PropertyBased"
      ],
      "product_memberships" : [
        "PropertyLawKit",
        "PropertyLawMacro"
      ],
      "sources" : [
        "Internal/AggregateDriver.swift",
        "Internal/Backends/SwiftPropertyBasedBackend.swift",
        "Internal/CoverageAccumulator.swift",
        "Internal/LawSuppressionPolicy.swift",
        "Internal/NearMissCollector.swift",
        "Internal/PerLawDriver.swift",
        "Internal/ReplayEnvironmentValidator.swift",
        "Internal/ViolationFormatter.swift",
        "Model/CheckResult.swift",
        "Model/CodableCodec.swift",
        "Model/CodableLawConfig.swift",
        "Model/CodableRoundTripMode.swift",
        "Model/EnforcementMode.swift",
        "Model/Environment.swift",
        "Model/LawCheckOptions.swift",
        "Model/LawIdentifier.swift",
        "Model/LawSelection.swift",
        "Model/LawSuppression.swift",
        "Model/PropertyLawViolation.swift",
        "Model/Seed.swift",
        "Model/SequenceLawOptions.swift",
        "Model/StrictnessTier.swift",
        "Model/TrialBudget.swift",
        "PropertyLawKit.swift",
        "Public/AdditiveArithmeticLaws.swift",
        "Public/BidirectionalCollectionLaws.swift",
        "Public/BinaryFloatingPointLaws.swift",
        "Public/BinaryIntegerLaws.swift",
        "Public/CaseIterableLaws.swift",
        "Public/CodableLaws.swift",
        "Public/CollectionLaws.swift",
        "Public/CommutativeMonoid.swift",
        "Public/CommutativeMonoidLaws.swift",
        "Public/ComparableLaws.swift",
        "Public/CoverageClassifier.swift",
        "Public/EquatableLaws.swift",
        "Public/FixedWidthIntegerLaws.swift",
        "Public/FloatingPointLaws.swift",
        "Public/Group.swift",
        "Public/GroupLaws.swift",
        "Public/HashableLaws.swift",
        "Public/IdentifiableLaws.swift",
        "Public/IteratorProtocolLaws.swift",
        "Public/LosslessStringConvertibleLaws.swift",
        "Public/Monoid.swift",
        "Public/MonoidLaws.swift",
        "Public/MutableCollectionLaws.swift",
        "Public/NumericGenerators.swift",
        "Public/NumericLaws.swift",
        "Public/PropertyBackend.swift",
        "Public/RandomAccessCollectionLaws.swift",
        "Public/RangeReplaceableCollectionLaws.swift",
        "Public/RawRepresentableLaws.swift",
        "Public/ReplayEnvironmentMismatch.swift",
        "Public/Semigroup.swift",
        "Public/SemigroupLaws.swift",
        "Public/Semilattice.swift",
        "Public/SemilatticeLaws.swift",
        "Public/SequenceLaws.swift",
        "Public/SetAlgebraLaws.swift",
        "Public/SignedIntegerLaws.swift",
        "Public/SignedNumericLaws.swift",
        "Public/StrideableLaws.swift",
        "Public/StringProtocolLaws.swift",
        "Public/UnsignedIntegerLaws.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PropertyLawDiscoveryToolTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawDiscoveryToolTests",
      "path" : "Tests/PropertyLawDiscoveryToolTests",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftParser"
      ],
      "sources" : [
        "AdvisorySuggesterTests.swift",
        "EmitterGoldenTests.swift",
        "ModuleScannerRoundTripTests.swift",
        "ModuleScannerTests.swift",
        "RoundTripSuggesterTests.swift",
        "SuppressionParserTests.swift",
        "ToolInvocationTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawDiscoveryTool",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawDiscoveryTool",
      "path" : "Sources/PropertyLawDiscoveryTool",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftParser"
      ],
      "product_memberships" : [
        "PropertyLawDiscoveryTool"
      ],
      "sources" : [
        "AdvisorySuggester.swift",
        "ConformanceMap.swift",
        "GeneratedFileEmitter.swift",
        "ModuleScanner.swift",
        "PluginMemberInspector.swift",
        "PropertyLawDiscoveryTool.swift",
        "RoundTripFinder.swift",
        "RoundTripSuggester.swift",
        "SuppressionParser.swift",
        "WitnessFinder.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "PropertyLawDiscoveryPlugin",
      "module_type" : "PluginTarget",
      "name" : "PropertyLawDiscoveryPlugin",
      "path" : "Plugins/PropertyLawDiscoveryPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Generate PropertyLawKit test files by walking a target's source files and detecting stdlib protocol conformances.",
          "type" : "custom",
          "verb" : "propertylawcheck"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "PropertyLawDiscoveryPlugin writes a generated test file (default: Tests/<Target>Tests/PropertyLawTests.generated.swift) listing the checkXxxPropertyLaws calls for each detected conformance.",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "PropertyLawCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawCoreTests",
      "path" : "Tests/PropertyLawCoreTests",
      "sources" : [
        "DerivationStrategistTests.swift",
        "GeneratorExpressionEmitterTests.swift",
        "MemberwiseEmitterTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawCore",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawCore",
      "path" : "Sources/PropertyLawCore",
      "product_memberships" : [
        "PropertyLawMacro",
        "PropertyLawCore",
        "PropertyLawDiscoveryTool",
        "PropertyLawMacroImpl"
      ],
      "sources" : [
        "DerivationStrategy.swift",
        "GeneratorExpressionEmitter.swift",
        "KnownProtocol.swift",
        "MemberwiseEmitter.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Done.