The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Syntax, reference develop (1b9c20), with Swift 6.1 for tvOS using Xcode 16.3 on 27 Apr 2025 01:24:12 UTC.

Swift 6 data race errors: 29

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Syntax -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nerdsupremacist/Syntax.git
Reference: develop
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/nerdsupremacist/Syntax
 * branch            develop    -> FETCH_HEAD
 * [new branch]      develop    -> origin/develop
HEAD is now at 1b9c205 fixing html identifier parser to accept everything in spec
Cloned https://github.com/nerdsupremacist/Syntax.git
Revision (git rev-parse @):
1b9c205813538fc09c0f5c778504fd3c49847557
SUCCESS checkout https://github.com/nerdsupremacist/Syntax.git at develop
========================================
Build
========================================
Selected platform:         tvOS
Swift version:             6.1
Building package at path:  $PWD
https://github.com/nerdsupremacist/Syntax.git
https://github.com/nerdsupremacist/Syntax.git
{
  "dependencies" : [
    {
      "identity" : "syntaxtree",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nerdsupremacist/SyntaxTree.git"
    }
  ],
  "manifest_display_name" : "Syntax",
  "name" : "Syntax",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Syntax",
      "targets" : [
        "Syntax"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SyntaxTests",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxTests",
      "path" : "Tests/SyntaxTests",
      "sources" : [
        "Expression/Expression+Operator.swift",
        "Expression/Expression.swift",
        "Expression/ExpressionParser.swift",
        "ExpressionSyntaxTests.swift",
        "HTML/HTMLNode.swift",
        "HTML/HTMLNodeParser.swift",
        "HTMLSyntaxTests.swift",
        "JSON/JSON.swift",
        "JSON/JSONParser.swift",
        "JSONSyntaxTests.swift"
      ],
      "target_dependencies" : [
        "Syntax"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Syntax",
      "module_type" : "SwiftTarget",
      "name" : "Syntax",
      "path" : "Sources/Syntax",
      "product_dependencies" : [
        "SyntaxTree"
      ],
      "product_memberships" : [
        "Syntax"
      ],
      "sources" : [
        "AnnotatedString.swift",
        "Cache/Cache.swift",
        "Cache/OrderedSet.swift",
        "Errors/AnnotatedError.swift",
        "Errors/DiagnosticError.swift",
        "Errors/ParserError.swift",
        "Errors/ScannerError.swift",
        "Errors/ScannerErrorHandler.swift",
        "Errors/WhiteSpaceConsumer.swift",
        "ExpressionMatch.swift",
        "FunctionBuilder/EitherParserBuilder.swift",
        "FunctionBuilder/ParserBuilder.swift",
        "Implementations/AnyParser.swift",
        "Implementations/Common/BinaryOperation/Associativity.swift",
        "Implementations/Common/BinaryOperation/BinaryOperation.swift",
        "Implementations/Common/BinaryOperation/BinaryOperationParser.swift",
        "Implementations/Common/BinaryOperation/BinaryOperationParserError.swift",
        "Implementations/Common/BinaryOperation/BinaryOperator.swift",
        "Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift",
        "Implementations/Common/BooleanLiteral.swift",
        "Implementations/Common/DoubleLiteral.swift",
        "Implementations/Common/IntLiteral.swift",
        "Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift",
        "Implementations/Common/StringLiterals/StringEscapeStrategy.swift",
        "Implementations/Common/StringLiterals/StringLiteral.swift",
        "Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift",
        "Implementations/Modifications/Maybe.swift",
        "Implementations/Modifications/Parser+annotate.swift",
        "Implementations/Modifications/Parser+ignoreOutput.swift",
        "Implementations/Modifications/Parser+kind.swift",
        "Implementations/Modifications/Parser+map+location.swift",
        "Implementations/Modifications/Parser+map.swift",
        "Implementations/Modifications/Parser+optimize.swift",
        "Implementations/Modifications/Parser+preventRecursion.swift",
        "Implementations/Modifications/Parser+repeatUntil.swift",
        "Implementations/Modifications/Parser+separated.swift",
        "Implementations/Modifications/Repeat.swift",
        "Implementations/Structure/Annotated.swift",
        "Implementations/Structure/AnnotatedUntil.swift",
        "Implementations/Structure/Either.swift",
        "Implementations/Structure/Group.swift",
        "Implementations/Structure/IfElseConditionalParser.swift",
        "Implementations/Structure/Leaf.swift",
        "Implementations/Structure/TupleParser.swift",
        "Implementations/Tokens/EmptyParser.swift",
        "Implementations/Tokens/RegexBuilder+support.swift",
        "Implementations/Tokens/RegularExpression.swift",
        "Implementations/Tokens/String+Parser.swift",
        "Implementations/Tokens/Token.swift",
        "Implementations/Tokens/Word.swift",
        "Implementations/neverBody.swift",
        "Internals/InternalParser.swift",
        "Internals/InternalParserBuilder.swift",
        "Internals/MemoizationKey.swift",
        "Internals/MemoizationStorage.swift",
        "Internals/Memoized.swift",
        "Internals/Node.swift",
        "Internals/Parser+internalParser.swift",
        "Internals/Scanner.swift",
        "Internals/ScannerState.swift",
        "Internals/Stack.swift",
        "Internals/StandardInternalParserBuilderContext.swift",
        "Internals/StandardScanner.swift",
        "Internals/String+casing.swift",
        "Located.swift",
        "Parser.swift",
        "ParserOption.swift",
        "RecursiveParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Fetching from https://github.com/nerdsupremacist/SyntaxTree.git
Creating working copy of package ‘SyntaxTree’
Checking out 0.1.0 of package ‘SyntaxTree’
Resolve Package Graph
Resolved source packages:
  SyntaxTree: https://github.com/nerdsupremacist/SyntaxTree.git @ 0.1.0
  Syntax: /Users/admin/builder/spi-builder-workspace
resolved source packages: SyntaxTree, Syntax
{
  "dependencies" : [
    {
      "identity" : "syntaxtree",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nerdsupremacist/SyntaxTree.git"
    }
  ],
  "manifest_display_name" : "Syntax",
  "name" : "Syntax",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Syntax",
      "targets" : [
        "Syntax"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SyntaxTests",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxTests",
      "path" : "Tests/SyntaxTests",
      "sources" : [
        "Expression/Expression+Operator.swift",
        "Expression/Expression.swift",
        "Expression/ExpressionParser.swift",
        "ExpressionSyntaxTests.swift",
        "HTML/HTMLNode.swift",
        "HTML/HTMLNodeParser.swift",
        "HTMLSyntaxTests.swift",
        "JSON/JSON.swift",
        "JSON/JSONParser.swift",
        "JSONSyntaxTests.swift"
      ],
      "target_dependencies" : [
        "Syntax"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Syntax",
      "module_type" : "SwiftTarget",
      "name" : "Syntax",
      "path" : "Sources/Syntax",
      "product_dependencies" : [
        "SyntaxTree"
      ],
      "product_memberships" : [
        "Syntax"
      ],
      "sources" : [
        "AnnotatedString.swift",
        "Cache/Cache.swift",
        "Cache/OrderedSet.swift",
        "Errors/AnnotatedError.swift",
        "Errors/DiagnosticError.swift",
        "Errors/ParserError.swift",
        "Errors/ScannerError.swift",
        "Errors/ScannerErrorHandler.swift",
        "Errors/WhiteSpaceConsumer.swift",
        "ExpressionMatch.swift",
        "FunctionBuilder/EitherParserBuilder.swift",
        "FunctionBuilder/ParserBuilder.swift",
        "Implementations/AnyParser.swift",
        "Implementations/Common/BinaryOperation/Associativity.swift",
        "Implementations/Common/BinaryOperation/BinaryOperation.swift",
        "Implementations/Common/BinaryOperation/BinaryOperationParser.swift",
        "Implementations/Common/BinaryOperation/BinaryOperationParserError.swift",
        "Implementations/Common/BinaryOperation/BinaryOperator.swift",
        "Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift",
        "Implementations/Common/BooleanLiteral.swift",
        "Implementations/Common/DoubleLiteral.swift",
        "Implementations/Common/IntLiteral.swift",
        "Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift",
        "Implementations/Common/StringLiterals/StringEscapeStrategy.swift",
        "Implementations/Common/StringLiterals/StringLiteral.swift",
        "Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift",
        "Implementations/Modifications/Maybe.swift",
        "Implementations/Modifications/Parser+annotate.swift",
        "Implementations/Modifications/Parser+ignoreOutput.swift",
        "Implementations/Modifications/Parser+kind.swift",
        "Implementations/Modifications/Parser+map+location.swift",
        "Implementations/Modifications/Parser+map.swift",
        "Implementations/Modifications/Parser+optimize.swift",
        "Implementations/Modifications/Parser+preventRecursion.swift",
        "Implementations/Modifications/Parser+repeatUntil.swift",
        "Implementations/Modifications/Parser+separated.swift",
        "Implementations/Modifications/Repeat.swift",
        "Implementations/Structure/Annotated.swift",
        "Implementations/Structure/AnnotatedUntil.swift",
        "Implementations/Structure/Either.swift",
        "Implementations/Structure/Group.swift",
        "Implementations/Structure/IfElseConditionalParser.swift",
        "Implementations/Structure/Leaf.swift",
        "Implementations/Structure/TupleParser.swift",
        "Implementations/Tokens/EmptyParser.swift",
        "Implementations/Tokens/RegexBuilder+support.swift",
        "Implementations/Tokens/RegularExpression.swift",
        "Implementations/Tokens/String+Parser.swift",
        "Implementations/Tokens/Token.swift",
        "Implementations/Tokens/Word.swift",
        "Implementations/neverBody.swift",
        "Internals/InternalParser.swift",
        "Internals/InternalParserBuilder.swift",
        "Internals/MemoizationKey.swift",
        "Internals/MemoizationStorage.swift",
        "Internals/Memoized.swift",
        "Internals/Node.swift",
        "Internals/Parser+internalParser.swift",
        "Internals/Scanner.swift",
        "Internals/ScannerState.swift",
        "Internals/Stack.swift",
        "Internals/StandardInternalParserBuilderContext.swift",
        "Internals/StandardScanner.swift",
        "Internals/String+casing.swift",
        "Located.swift",
        "Parser.swift",
        "ParserOption.swift",
        "RecursiveParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "Syntax"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Syntax -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Syntax -destination generic/platform=tvOS "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures"
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Resolve Package Graph
Resolve Package Graph
Resolved source packages:
  Syntax: /Users/admin/builder/spi-builder-workspace
  SyntaxTree: https://github.com/nerdsupremacist/SyntaxTree.git @ 0.1.0
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (4 targets)
    Target 'Syntax' in project 'Syntax'
        ➜ Explicit dependency on target 'Syntax' in project 'Syntax'
        ➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
    Target 'Syntax' in project 'Syntax'
        ➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
    Target 'SyntaxTree' in project 'SyntaxTree'
        ➜ Explicit dependency on target 'SyntaxTree' in project 'SyntaxTree'
    Target 'SyntaxTree' in project 'SyntaxTree' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 680430e6254c31349a56292a448c8b8f
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/680430e6254c31349a56292a448c8b8f.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.DependencyStaticMetadataFileList (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.DependencyMetadataFileList (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.DependencyMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.modulemap (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.modulemap
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.LinkFileList (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftConstValuesFileList (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.modulemap (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.modulemap
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.DependencyStaticMetadataFileList (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.DependencyMetadataFileList (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.DependencyMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SyntaxTree.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.modulemap (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftConstValuesFileList (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.LinkFileList (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Syntax.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.modulemap (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos
SwiftDriver SyntaxTree normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SyntaxTree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ Kind.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Location.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Location.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Location.swift (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ SyntaxTree (in target 'SyntaxTree' from project 'SyntaxTree')
EmitSwiftModule normal arm64 (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SyntaxTreeFactory.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/SyntaxTreeFactory.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/SyntaxTreeFactory.swift (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ LineColumnIndex.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/LineColumnIndex.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/LineColumnIndex.swift (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ MutableSyntaxTree.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/MutableSyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/MutableSyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SyntaxTree.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/SyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/SyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for SyntaxTree (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftDriver\ Compilation\ Requirements SyntaxTree normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SyntaxTree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SyntaxTree-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SyntaxTree-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftdoc (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.abi.json (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftsourceinfo (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriver Syntax normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Syntax -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ ScannerErrorHandler.swift,\ WhiteSpaceConsumer.swift,\ ExpressionMatch.swift,\ EitherParserBuilder.swift,\ ParserBuilder.swift,\ AnyParser.swift,\ Associativity.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerErrorHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/WhiteSpaceConsumer.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ExpressionMatch.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/EitherParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/ParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/AnyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/Associativity.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerErrorHandler.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/WhiteSpaceConsumer.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ExpressionMatch.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/EitherParserBuilder.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/FunctionBuilder/ParserBuilder.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/AnyParser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/Associativity.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ Syntax (in target 'Syntax' from project 'Syntax')
EmitSwiftModule normal arm64 (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift:6:16: warning: stored property 'range' of 'Sendable'-conforming struct 'AnnotatedError' has non-sendable type 'Range<Location>'; this is an error in the Swift 6 language mode
    public let range: Range<Location>
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Location.swift:3:15: note: struct 'Location' does not conform to the 'Sendable' protocol
public struct Location: Comparable, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift:20:16: warning: stored property 'location' of 'Sendable'-conforming struct 'ScannerError' has non-sendable type 'Location'; this is an error in the Swift 6 language mode
    public let location: Location
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Location.swift:3:15: note: struct 'Location' does not conform to the 'Sendable' protocol
public struct Location: Comparable, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift:21:16: warning: stored property 'reason' of 'Sendable'-conforming struct 'ScannerError' has non-sendable type 'ScannerError.Reason'; this is an error in the Swift 6 language mode
    public let reason: Reason
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift:6:17: note: consider making enum 'Reason' conform to the 'Sendable' protocol
    public enum Reason {
                ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:235:23: warning: static property 'binaryOperation' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryOperation: Kind = "binary.operation"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:235:23: note: add '@MainActor' to make static property 'binaryOperation' part of global actor 'MainActor'
    public static let binaryOperation: Kind = "binary.operation"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:235:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryOperation: Kind = "binary.operation"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:236:23: warning: static property 'binaryOperator' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryOperator: Kind = "binary.operator"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:236:23: note: add '@MainActor' to make static property 'binaryOperator' part of global actor 'MainActor'
    public static let binaryOperator: Kind = "binary.operator"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:236:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryOperator: Kind = "binary.operator"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift:5:10: warning: associated value 'failedToParseABinaryOperation(member:)' of 'Sendable'-conforming enum 'BinaryOperationParserError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case failedToParseABinaryOperation(member: Any)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:6:23: warning: static property 'kind' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var kind: Kind = .booleanLiteral
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:6:23: note: convert 'kind' to a 'let' constant to make 'Sendable' shared state immutable
    public static var kind: Kind = .booleanLiteral
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:6:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static var kind: Kind = .booleanLiteral
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var kind: Kind = .booleanLiteral
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:35:23: warning: static property 'booleanLiteral' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let booleanLiteral: Kind = "boolean.literal"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:35:23: note: add '@MainActor' to make static property 'booleanLiteral' part of global actor 'MainActor'
    public static let booleanLiteral: Kind = "boolean.literal"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let booleanLiteral: Kind = "boolean.literal"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:9:23: warning: static property 'kind' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let kind: Kind = .doubleLiteral
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:9:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static let kind: Kind = .doubleLiteral
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let kind: Kind = .doubleLiteral
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:26:23: warning: static property 'doubleLiteral' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let doubleLiteral: Kind = "double.literal"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:26:23: note: add '@MainActor' to make static property 'doubleLiteral' part of global actor 'MainActor'
    public static let doubleLiteral: Kind = "double.literal"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let doubleLiteral: Kind = "double.literal"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:9:23: warning: static property 'kind' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let kind: Kind = .intLiteral
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:9:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static let kind: Kind = .intLiteral
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let kind: Kind = .intLiteral
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:27:23: warning: static property 'intLiteral' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let intLiteral: Kind = "int.literal"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:27:23: note: add '@MainActor' to make static property 'intLiteral' part of global actor 'MainActor'
    public static let intLiteral: Kind = "int.literal"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let intLiteral: Kind = "int.literal"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:6:23: warning: static property 'kind' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let kind: Kind = .stringLiteral
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:6:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static let kind: Kind = .stringLiteral
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let kind: Kind = .stringLiteral
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:47:23: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringLiteral: Kind = "string.literal"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:47:23: note: add '@MainActor' to make static property 'stringLiteral' part of global actor 'MainActor'
    public static let stringLiteral: Kind = "string.literal"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringLiteral: Kind = "string.literal"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:48:23: warning: static property 'stringContent' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringContent: Kind = "string.content"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:48:23: note: add '@MainActor' to make static property 'stringContent' part of global actor 'MainActor'
    public static let stringContent: Kind = "string.content"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringContent: Kind = "string.content"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:49:23: warning: static property 'stringStartDelimiter' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringStartDelimiter: Kind = "string.delimiter.start"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:49:23: note: add '@MainActor' to make static property 'stringStartDelimiter' part of global actor 'MainActor'
    public static let stringStartDelimiter: Kind = "string.delimiter.start"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringStartDelimiter: Kind = "string.delimiter.start"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:50:23: warning: static property 'stringEndDelimiter' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringEndDelimiter: Kind = "string.delimiter.end"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:50:23: note: add '@MainActor' to make static property 'stringEndDelimiter' part of global actor 'MainActor'
    public static let stringEndDelimiter: Kind = "string.delimiter.end"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringEndDelimiter: Kind = "string.delimiter.end"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:51:23: warning: static property 'stringEscapedCharacter' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringEscapedCharacter: Kind = "string.escaped.character"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:51:23: note: add '@MainActor' to make static property 'stringEscapedCharacter' part of global actor 'MainActor'
    public static let stringEscapedCharacter: Kind = "string.escaped.character"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringEscapedCharacter: Kind = "string.escaped.character"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:52:23: warning: static property 'stringEscapedDelimiter' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringEscapedDelimiter: Kind = "string.escaped.delimiter"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:52:23: note: add '@MainActor' to make static property 'stringEscapedDelimiter' part of global actor 'MainActor'
    public static let stringEscapedDelimiter: Kind = "string.escaped.delimiter"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringEscapedDelimiter: Kind = "string.escaped.delimiter"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift:52:23: warning: static property 'expressionMatch' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let expressionMatch: Kind = "regular.expression.match"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift:52:23: note: add '@MainActor' to make static property 'expressionMatch' part of global actor 'MainActor'
    public static let expressionMatch: Kind = "regular.expression.match"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let expressionMatch: Kind = "regular.expression.match"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift:6:23: warning: static property 'kind' is not concurrency-safe because non-'Sendable' type 'Kind?' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let kind: Kind? = nil
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift:6:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static let kind: Kind? = nil
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let kind: Kind? = nil
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift:52:23: warning: static property 'tokenMatch' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tokenMatch: Kind = "token.match"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift:52:23: note: add '@MainActor' to make static property 'tokenMatch' part of global actor 'MainActor'
    public static let tokenMatch: Kind = "token.match"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tokenMatch: Kind = "token.match"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift:53:23: warning: static property 'wordMatch' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let wordMatch: Kind = "word.match"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift:53:23: note: add '@MainActor' to make static property 'wordMatch' part of global actor 'MainActor'
    public static let wordMatch: Kind = "word.match"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let wordMatch: Kind = "word.match"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:445:16: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func store<T>(value: T) {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:453:14: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:603:16: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func store<T>(value: T) {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:611:14: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift:5:13: warning: var 'computedKinds' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var computedKinds = [Int : Kind]()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift:5:13: note: convert 'computedKinds' to a 'let' constant to make 'Sendable' shared state immutable
private var computedKinds = [Int : Kind]()
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift:5:13: note: add '@MainActor' to make var 'computedKinds' part of global actor 'MainActor'
private var computedKinds = [Int : Kind]()
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var computedKinds = [Int : Kind]()
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift:10:23: warning: static property 'allowWhiteSpaces' is not concurrency-safe because non-'Sendable' type 'ParserOption' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allowWhiteSpaces = ParserOption(errorHandler: WhitespaceConsumer())
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift:4:15: note: consider making struct 'ParserOption' conform to the 'Sendable' protocol
public struct ParserOption {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift:10:23: note: add '@MainActor' to make static property 'allowWhiteSpaces' part of global actor 'MainActor'
    public static let allowWhiteSpaces = ParserOption(errorHandler: WhitespaceConsumer())
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allowWhiteSpaces = ParserOption(errorHandler: WhitespaceConsumer())
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ IntLiteral.swift,\ JavaScriptEscapeStrategy.swift,\ StringEscapeStrategy.swift,\ StringLiteral.swift,\ SwiftEscapeStrategy.swift,\ Maybe.swift,\ Parser+annotate.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:9:23: warning: static property 'kind' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let kind: Kind = .intLiteral
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:9:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static let kind: Kind = .intLiteral
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let kind: Kind = .intLiteral
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:27:23: warning: static property 'intLiteral' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let intLiteral: Kind = "int.literal"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:27:23: note: add '@MainActor' to make static property 'intLiteral' part of global actor 'MainActor'
    public static let intLiteral: Kind = "int.literal"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/IntLiteral.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let intLiteral: Kind = "int.literal"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:6:23: warning: static property 'kind' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let kind: Kind = .stringLiteral
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:6:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static let kind: Kind = .stringLiteral
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let kind: Kind = .stringLiteral
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:47:23: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringLiteral: Kind = "string.literal"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:47:23: note: add '@MainActor' to make static property 'stringLiteral' part of global actor 'MainActor'
    public static let stringLiteral: Kind = "string.literal"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringLiteral: Kind = "string.literal"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:48:23: warning: static property 'stringContent' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringContent: Kind = "string.content"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:48:23: note: add '@MainActor' to make static property 'stringContent' part of global actor 'MainActor'
    public static let stringContent: Kind = "string.content"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringContent: Kind = "string.content"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:49:23: warning: static property 'stringStartDelimiter' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringStartDelimiter: Kind = "string.delimiter.start"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:49:23: note: add '@MainActor' to make static property 'stringStartDelimiter' part of global actor 'MainActor'
    public static let stringStartDelimiter: Kind = "string.delimiter.start"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringStartDelimiter: Kind = "string.delimiter.start"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:50:23: warning: static property 'stringEndDelimiter' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringEndDelimiter: Kind = "string.delimiter.end"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:50:23: note: add '@MainActor' to make static property 'stringEndDelimiter' part of global actor 'MainActor'
    public static let stringEndDelimiter: Kind = "string.delimiter.end"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringEndDelimiter: Kind = "string.delimiter.end"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:51:23: warning: static property 'stringEscapedCharacter' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringEscapedCharacter: Kind = "string.escaped.character"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:51:23: note: add '@MainActor' to make static property 'stringEscapedCharacter' part of global actor 'MainActor'
    public static let stringEscapedCharacter: Kind = "string.escaped.character"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringEscapedCharacter: Kind = "string.escaped.character"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:52:23: warning: static property 'stringEscapedDelimiter' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let stringEscapedDelimiter: Kind = "string.escaped.delimiter"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:52:23: note: add '@MainActor' to make static property 'stringEscapedDelimiter' part of global actor 'MainActor'
    public static let stringEscapedDelimiter: Kind = "string.escaped.delimiter"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/StringLiteral.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let stringEscapedDelimiter: Kind = "string.escaped.delimiter"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Maybe.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+annotate.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Word.swift,\ neverBody.swift,\ InternalParser.swift,\ InternalParserBuilder.swift,\ MemoizationKey.swift,\ MemoizationStorage.swift,\ Memoized.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/neverBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/InternalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/InternalParserBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Memoized.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift:53:23: warning: static property 'wordMatch' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let wordMatch: Kind = "word.match"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift:53:23: note: add '@MainActor' to make static property 'wordMatch' part of global actor 'MainActor'
    public static let wordMatch: Kind = "word.match"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Word.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let wordMatch: Kind = "word.match"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/neverBody.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/InternalParser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/InternalParserBuilder.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationKey.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/MemoizationStorage.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Memoized.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ BinaryOperation.swift,\ BinaryOperationParser.swift,\ BinaryOperationParserError.swift,\ BinaryOperator.swift,\ MemberOfBinaryOperation.swift,\ BooleanLiteral.swift,\ DoubleLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperator.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperation.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:235:23: warning: static property 'binaryOperation' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryOperation: Kind = "binary.operation"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:235:23: note: add '@MainActor' to make static property 'binaryOperation' part of global actor 'MainActor'
    public static let binaryOperation: Kind = "binary.operation"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:235:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryOperation: Kind = "binary.operation"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:236:23: warning: static property 'binaryOperator' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryOperator: Kind = "binary.operator"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:236:23: note: add '@MainActor' to make static property 'binaryOperator' part of global actor 'MainActor'
    public static let binaryOperator: Kind = "binary.operator"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParser.swift:236:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryOperator: Kind = "binary.operator"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperationParserError.swift:5:10: warning: associated value 'failedToParseABinaryOperation(member:)' of 'Sendable'-conforming enum 'BinaryOperationParserError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case failedToParseABinaryOperation(member: Any)
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/BinaryOperator.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:6:23: warning: static property 'kind' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var kind: Kind = .booleanLiteral
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:6:23: note: convert 'kind' to a 'let' constant to make 'Sendable' shared state immutable
    public static var kind: Kind = .booleanLiteral
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:6:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static var kind: Kind = .booleanLiteral
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var kind: Kind = .booleanLiteral
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:35:23: warning: static property 'booleanLiteral' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let booleanLiteral: Kind = "boolean.literal"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:35:23: note: add '@MainActor' to make static property 'booleanLiteral' part of global actor 'MainActor'
    public static let booleanLiteral: Kind = "boolean.literal"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/BooleanLiteral.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let booleanLiteral: Kind = "boolean.literal"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:9:23: warning: static property 'kind' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let kind: Kind = .doubleLiteral
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:9:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static let kind: Kind = .doubleLiteral
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let kind: Kind = .doubleLiteral
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:26:23: warning: static property 'doubleLiteral' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let doubleLiteral: Kind = "double.literal"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:26:23: note: add '@MainActor' to make static property 'doubleLiteral' part of global actor 'MainActor'
    public static let doubleLiteral: Kind = "double.literal"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Common/DoubleLiteral.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let doubleLiteral: Kind = "double.literal"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Kind.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 Compiling\ StandardScanner.swift,\ String+casing.swift,\ Located.swift,\ Parser.swift,\ ParserOption.swift,\ RecursiveParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardScanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/String+casing.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Located.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/RecursiveParser.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardScanner.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/String+casing.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Located.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift:5:13: warning: var 'computedKinds' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var computedKinds = [Int : Kind]()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift:5:13: note: convert 'computedKinds' to a 'let' constant to make 'Sendable' shared state immutable
private var computedKinds = [Int : Kind]()
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift:5:13: note: add '@MainActor' to make var 'computedKinds' part of global actor 'MainActor'
private var computedKinds = [Int : Kind]()
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Parser.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var computedKinds = [Int : Kind]()
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift:10:23: warning: static property 'allowWhiteSpaces' is not concurrency-safe because non-'Sendable' type 'ParserOption' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allowWhiteSpaces = ParserOption(errorHandler: WhitespaceConsumer())
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift:4:15: note: consider making struct 'ParserOption' conform to the 'Sendable' protocol
public struct ParserOption {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift:10:23: note: add '@MainActor' to make static property 'allowWhiteSpaces' part of global actor 'MainActor'
    public static let allowWhiteSpaces = ParserOption(errorHandler: WhitespaceConsumer())
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/ParserOption.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allowWhiteSpaces = ParserOption(errorHandler: WhitespaceConsumer())
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/RecursiveParser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling MutableSyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 Compiling\ Parser+ignoreOutput.swift,\ Parser+kind.swift,\ Parser+map+location.swift,\ Parser+map.swift,\ Parser+optimize.swift,\ Parser+preventRecursion.swift,\ Parser+repeatUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+ignoreOutput.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+kind.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map+location.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+optimize.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+preventRecursion.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+repeatUntil.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+ignoreOutput.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+kind.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map+location.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+map.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+optimize.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+preventRecursion.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+repeatUntil.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ AnnotatedString.swift,\ Cache.swift,\ OrderedSet.swift,\ AnnotatedError.swift,\ DiagnosticError.swift,\ ParserError.swift,\ ScannerError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/AnnotatedString.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/OrderedSet.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/DiagnosticError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/AnnotatedString.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/Cache.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Cache/OrderedSet.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift:6:16: warning: stored property 'range' of 'Sendable'-conforming struct 'AnnotatedError' has non-sendable type 'Range<Location>'; this is an error in the Swift 6 language mode
    public let range: Range<Location>
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Location.swift:3:15: note: struct 'Location' does not conform to the 'Sendable' protocol
public struct Location: Comparable, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/AnnotatedError.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/DiagnosticError.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ParserError.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift:20:16: warning: stored property 'location' of 'Sendable'-conforming struct 'ScannerError' has non-sendable type 'Location'; this is an error in the Swift 6 language mode
    public let location: Location
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Location.swift:3:15: note: struct 'Location' does not conform to the 'Sendable' protocol
public struct Location: Comparable, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift:21:16: warning: stored property 'reason' of 'Sendable'-conforming struct 'ScannerError' has non-sendable type 'ScannerError.Reason'; this is an error in the Swift 6 language mode
    public let reason: Reason
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Errors/ScannerError.swift:6:17: note: consider making enum 'Reason' conform to the 'Sendable' protocol
    public enum Reason {
                ^
                       : Sendable
SwiftDriverJobDiscovery normal arm64 Compiling Location.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 Compiling\ Parser+separated.swift,\ Repeat.swift,\ Annotated.swift,\ AnnotatedUntil.swift,\ Either.swift,\ Group.swift,\ IfElseConditionalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+separated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Repeat.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Annotated.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/AnnotatedUntil.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Either.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Group.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/IfElseConditionalParser.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Parser+separated.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Modifications/Repeat.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Annotated.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/AnnotatedUntil.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Either.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Group.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/IfElseConditionalParser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling SyntaxTreeFactory.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftDriverJobDiscovery normal arm64 Compiling SyntaxTree.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftCompile normal arm64 Compiling\ Leaf.swift,\ TupleParser.swift,\ EmptyParser.swift,\ RegexBuilder+support.swift,\ RegularExpression.swift,\ String+Parser.swift,\ Token.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Leaf.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/TupleParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/EmptyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegexBuilder+support.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/Leaf.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Structure/TupleParser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/EmptyParser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegexBuilder+support.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift:52:23: warning: static property 'expressionMatch' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let expressionMatch: Kind = "regular.expression.match"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift:52:23: note: add '@MainActor' to make static property 'expressionMatch' part of global actor 'MainActor'
    public static let expressionMatch: Kind = "regular.expression.match"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/RegularExpression.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let expressionMatch: Kind = "regular.expression.match"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift:6:23: warning: static property 'kind' is not concurrency-safe because non-'Sendable' type 'Kind?' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let kind: Kind? = nil
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift:6:23: note: add '@MainActor' to make static property 'kind' part of global actor 'MainActor'
    public static let kind: Kind? = nil
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/String+Parser.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let kind: Kind? = nil
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift:52:23: warning: static property 'tokenMatch' is not concurrency-safe because non-'Sendable' type 'Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tokenMatch: Kind = "token.match"
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree/Sources/SyntaxTree/Kind.swift:4:15: note: struct 'Kind' does not conform to the 'Sendable' protocol
public struct Kind: RawRepresentable, Encodable, Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift:3:12: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SyntaxTree'
@_exported import SyntaxTree
           ^
           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift:52:23: note: add '@MainActor' to make static property 'tokenMatch' part of global actor 'MainActor'
    public static let tokenMatch: Kind = "token.match"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Implementations/Tokens/Token.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tokenMatch: Kind = "token.match"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling LineColumnIndex.swift (in target 'SyntaxTree' from project 'SyntaxTree')
SwiftDriver\ Compilation SyntaxTree normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SyntaxTree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Word.swift, neverBody.swift, InternalParser.swift, InternalParserBuilder.swift, MemoizationKey.swift, MemoizationStorage.swift, Memoized.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 Compiling\ Node.swift,\ Parser+internalParser.swift,\ Scanner.swift,\ ScannerState.swift,\ Stack.swift,\ StandardInternalParserBuilderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Node.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Parser+internalParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Scanner.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Stack.swift /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardInternalParserBuilderContext.swift (in target 'Syntax' from project 'Syntax')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Node.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Parser+internalParser.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Scanner.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:445:16: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func store<T>(value: T) {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:453:14: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:603:16: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func store<T>(value: T) {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:611:14: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/Stack.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Syntax/Internals/StandardInternalParserBuilderContext.swift (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.o normal (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.o
SwiftDriverJobDiscovery normal arm64 Compiling Parser+ignoreOutput.swift, Parser+kind.swift, Parser+map+location.swift, Parser+map.swift, Parser+optimize.swift, Parser+preventRecursion.swift, Parser+repeatUntil.swift (in target 'Syntax' from project 'Syntax')
SwiftDriverJobDiscovery normal arm64 Compiling AnnotatedString.swift, Cache.swift, OrderedSet.swift, AnnotatedError.swift, DiagnosticError.swift, ParserError.swift, ScannerError.swift (in target 'Syntax' from project 'Syntax')
ExtractAppIntentsMetadata (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SyntaxTree --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier syntaxtree.SyntaxTree --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/SyntaxTree.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SyntaxTree.build/Debug-appletvos/SyntaxTree.build/Objects-normal/arm64/SyntaxTree.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 18:24:05.017 appintentsmetadataprocessor[766:4291] Starting appintentsmetadataprocessor export
2025-04-26 18:24:05.061 appintentsmetadataprocessor[766:4291] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.o (in target 'SyntaxTree' from project 'SyntaxTree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SyntaxTree
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SyntaxTree.o
SwiftDriverJobDiscovery normal arm64 Compiling Node.swift, Parser+internalParser.swift, Scanner.swift, ScannerState.swift, Stack.swift, StandardInternalParserBuilderContext.swift (in target 'Syntax' from project 'Syntax')
SwiftDriverJobDiscovery normal arm64 Compiling Leaf.swift, TupleParser.swift, EmptyParser.swift, RegexBuilder+support.swift, RegularExpression.swift, String+Parser.swift, Token.swift (in target 'Syntax' from project 'Syntax')
SwiftDriverJobDiscovery normal arm64 Compiling StandardScanner.swift, String+casing.swift, Located.swift, Parser.swift, ParserOption.swift, RecursiveParser.swift (in target 'Syntax' from project 'Syntax')
SwiftDriverJobDiscovery normal arm64 Compiling BinaryOperation.swift, BinaryOperationParser.swift, BinaryOperationParserError.swift, BinaryOperator.swift, MemberOfBinaryOperation.swift, BooleanLiteral.swift, DoubleLiteral.swift (in target 'Syntax' from project 'Syntax')
SwiftDriverJobDiscovery normal arm64 Compiling Parser+separated.swift, Repeat.swift, Annotated.swift, AnnotatedUntil.swift, Either.swift, Group.swift, IfElseConditionalParser.swift (in target 'Syntax' from project 'Syntax')
SwiftDriverJobDiscovery normal arm64 Compiling IntLiteral.swift, JavaScriptEscapeStrategy.swift, StringEscapeStrategy.swift, StringLiteral.swift, SwiftEscapeStrategy.swift, Maybe.swift, Parser+annotate.swift (in target 'Syntax' from project 'Syntax')
SwiftDriverJobDiscovery normal arm64 Emitting module for Syntax (in target 'Syntax' from project 'Syntax')
SwiftDriver\ Compilation\ Requirements Syntax normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Syntax -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Syntax-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-Swift.h (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Syntax-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftmodule (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftdoc (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.abi.json (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftsourceinfo (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling ScannerErrorHandler.swift, WhiteSpaceConsumer.swift, ExpressionMatch.swift, EitherParserBuilder.swift, ParserBuilder.swift, AnyParser.swift, Associativity.swift (in target 'Syntax' from project 'Syntax')
SwiftDriver\ Compilation Syntax normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Syntax -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.o normal (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.o
ExtractAppIntentsMetadata (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Syntax --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.Syntax --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.appintents --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Syntax.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Syntax.build/Debug-appletvos/Syntax.build/Objects-normal/arm64/Syntax.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 18:24:11.749 appintentsmetadataprocessor[769:4367] Starting appintentsmetadataprocessor export
2025-04-26 18:24:11.784 appintentsmetadataprocessor[769:4367] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.o (in target 'Syntax' from project 'Syntax')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Syntax.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "syntaxtree",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nerdsupremacist/SyntaxTree.git"
    }
  ],
  "manifest_display_name" : "Syntax",
  "name" : "Syntax",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Syntax",
      "targets" : [
        "Syntax"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SyntaxTests",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxTests",
      "path" : "Tests/SyntaxTests",
      "sources" : [
        "Expression/Expression+Operator.swift",
        "Expression/Expression.swift",
        "Expression/ExpressionParser.swift",
        "ExpressionSyntaxTests.swift",
        "HTML/HTMLNode.swift",
        "HTML/HTMLNodeParser.swift",
        "HTMLSyntaxTests.swift",
        "JSON/JSON.swift",
        "JSON/JSONParser.swift",
        "JSONSyntaxTests.swift"
      ],
      "target_dependencies" : [
        "Syntax"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Syntax",
      "module_type" : "SwiftTarget",
      "name" : "Syntax",
      "path" : "Sources/Syntax",
      "product_dependencies" : [
        "SyntaxTree"
      ],
      "product_memberships" : [
        "Syntax"
      ],
      "sources" : [
        "AnnotatedString.swift",
        "Cache/Cache.swift",
        "Cache/OrderedSet.swift",
        "Errors/AnnotatedError.swift",
        "Errors/DiagnosticError.swift",
        "Errors/ParserError.swift",
        "Errors/ScannerError.swift",
        "Errors/ScannerErrorHandler.swift",
        "Errors/WhiteSpaceConsumer.swift",
        "ExpressionMatch.swift",
        "FunctionBuilder/EitherParserBuilder.swift",
        "FunctionBuilder/ParserBuilder.swift",
        "Implementations/AnyParser.swift",
        "Implementations/Common/BinaryOperation/Associativity.swift",
        "Implementations/Common/BinaryOperation/BinaryOperation.swift",
        "Implementations/Common/BinaryOperation/BinaryOperationParser.swift",
        "Implementations/Common/BinaryOperation/BinaryOperationParserError.swift",
        "Implementations/Common/BinaryOperation/BinaryOperator.swift",
        "Implementations/Common/BinaryOperation/MemberOfBinaryOperation.swift",
        "Implementations/Common/BooleanLiteral.swift",
        "Implementations/Common/DoubleLiteral.swift",
        "Implementations/Common/IntLiteral.swift",
        "Implementations/Common/StringLiterals/JavaScriptEscapeStrategy.swift",
        "Implementations/Common/StringLiterals/StringEscapeStrategy.swift",
        "Implementations/Common/StringLiterals/StringLiteral.swift",
        "Implementations/Common/StringLiterals/SwiftEscapeStrategy.swift",
        "Implementations/Modifications/Maybe.swift",
        "Implementations/Modifications/Parser+annotate.swift",
        "Implementations/Modifications/Parser+ignoreOutput.swift",
        "Implementations/Modifications/Parser+kind.swift",
        "Implementations/Modifications/Parser+map+location.swift",
        "Implementations/Modifications/Parser+map.swift",
        "Implementations/Modifications/Parser+optimize.swift",
        "Implementations/Modifications/Parser+preventRecursion.swift",
        "Implementations/Modifications/Parser+repeatUntil.swift",
        "Implementations/Modifications/Parser+separated.swift",
        "Implementations/Modifications/Repeat.swift",
        "Implementations/Structure/Annotated.swift",
        "Implementations/Structure/AnnotatedUntil.swift",
        "Implementations/Structure/Either.swift",
        "Implementations/Structure/Group.swift",
        "Implementations/Structure/IfElseConditionalParser.swift",
        "Implementations/Structure/Leaf.swift",
        "Implementations/Structure/TupleParser.swift",
        "Implementations/Tokens/EmptyParser.swift",
        "Implementations/Tokens/RegexBuilder+support.swift",
        "Implementations/Tokens/RegularExpression.swift",
        "Implementations/Tokens/String+Parser.swift",
        "Implementations/Tokens/Token.swift",
        "Implementations/Tokens/Word.swift",
        "Implementations/neverBody.swift",
        "Internals/InternalParser.swift",
        "Internals/InternalParserBuilder.swift",
        "Internals/MemoizationKey.swift",
        "Internals/MemoizationStorage.swift",
        "Internals/Memoized.swift",
        "Internals/Node.swift",
        "Internals/Parser+internalParser.swift",
        "Internals/Scanner.swift",
        "Internals/ScannerState.swift",
        "Internals/Stack.swift",
        "Internals/StandardInternalParserBuilderContext.swift",
        "Internals/StandardScanner.swift",
        "Internals/String+casing.swift",
        "Located.swift",
        "Parser.swift",
        "ParserOption.swift",
        "RecursiveParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.