The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Syntax with Swift 5.10 for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0-Beta.2.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.29.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nerdsupremacist/Syntax.git
Reference: develop
Initialized empty Git repository in /Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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:         macosSpm
Swift version:             5.10
Building package at path:  $workDir
https://github.com/nerdsupremacist/Syntax.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0-Beta.2.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--423B1241ED78D482.txt
[4/10] Compiling SyntaxTree SyntaxTreeFactory.swift
[5/10] Compiling SyntaxTree Location.swift
[6/10] Compiling SyntaxTree SyntaxTree.swift
[7/10] Compiling SyntaxTree MutableSyntaxTree.swift
[8/10] Emitting module SyntaxTree
[9/10] Compiling SyntaxTree Kind.swift
[10/10] Compiling SyntaxTree LineColumnIndex.swift
[11/71] Compiling Syntax EmptyParser.swift
[12/71] Compiling Syntax RegexBuilder+support.swift
[13/71] Compiling Syntax RegularExpression.swift
[14/71] Compiling Syntax String+Parser.swift
[15/71] Compiling Syntax Token.swift
[16/71] Compiling Syntax Word.swift
[17/71] Compiling Syntax neverBody.swift
[18/71] Compiling Syntax InternalParser.swift
[19/79] Compiling Syntax Repeat.swift
[20/79] Compiling Syntax Annotated.swift
[21/79] Compiling Syntax AnnotatedUntil.swift
[22/79] Compiling Syntax Either.swift
[23/79] Compiling Syntax Group.swift
[24/79] Compiling Syntax IfElseConditionalParser.swift
[25/79] Compiling Syntax Leaf.swift
[26/79] Compiling Syntax TupleParser.swift
[27/79] Compiling Syntax Stack.swift
[28/79] Compiling Syntax StandardInternalParserBuilderContext.swift
[29/79] Compiling Syntax StandardScanner.swift
[30/79] Compiling Syntax String+casing.swift
[31/79] Compiling Syntax Located.swift
[32/79] Compiling Syntax Parser.swift
[33/79] Compiling Syntax ParserOption.swift
[34/79] Compiling Syntax RecursiveParser.swift
[35/79] Compiling Syntax MemberOfBinaryOperation.swift
[36/79] Compiling Syntax BooleanLiteral.swift
[37/79] Compiling Syntax DoubleLiteral.swift
[38/79] Compiling Syntax IntLiteral.swift
[39/79] Compiling Syntax JavaScriptEscapeStrategy.swift
[40/79] Compiling Syntax StringEscapeStrategy.swift
[41/79] Compiling Syntax StringLiteral.swift
[42/79] Compiling Syntax SwiftEscapeStrategy.swift
[43/79] Compiling Syntax Maybe.swift
[44/79] Emitting module Syntax
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[45/79] Compiling Syntax Parser+annotate.swift
[46/79] Compiling Syntax Parser+ignoreOutput.swift
[47/79] Compiling Syntax Parser+kind.swift
[48/79] Compiling Syntax Parser+map+location.swift
[49/79] Compiling Syntax Parser+map.swift
[50/79] Compiling Syntax Parser+optimize.swift
[51/79] Compiling Syntax Parser+preventRecursion.swift
[52/79] Compiling Syntax Parser+repeatUntil.swift
[53/79] Compiling Syntax Parser+separated.swift
[54/79] Compiling Syntax InternalParserBuilder.swift
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[55/79] Compiling Syntax MemoizationKey.swift
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[56/79] Compiling Syntax MemoizationStorage.swift
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[57/79] Compiling Syntax Memoized.swift
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[58/79] Compiling Syntax Node.swift
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[59/79] Compiling Syntax Parser+internalParser.swift
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[60/79] Compiling Syntax Scanner.swift
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[61/79] Compiling Syntax ScannerState.swift
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:405:37: note: 'T' previously declared here
private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
                                    ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func store<T>(value: T) {
               ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-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 Swift 6
    func pop<T>(of type: T.Type) throws -> T? {
             ^
/Users/builder/builds/UKfvDsi8u/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Syntax/Internals/ScannerState.swift:571:43: note: 'T' previously declared here
private class StackedScanningStateStorage<T>: ScannerStateStorage {
                                          ^
[62/79] Compiling Syntax ExpressionMatch.swift
[63/79] Compiling Syntax EitherParserBuilder.swift
[64/79] Compiling Syntax ParserBuilder.swift
[65/79] Compiling Syntax AnyParser.swift
[66/79] Compiling Syntax Associativity.swift
[67/79] Compiling Syntax BinaryOperation.swift
[68/79] Compiling Syntax BinaryOperationParser.swift
[69/79] Compiling Syntax BinaryOperationParserError.swift
[70/79] Compiling Syntax BinaryOperator.swift
[71/79] Compiling Syntax AnnotatedString.swift
[72/79] Compiling Syntax Cache.swift
[73/79] Compiling Syntax OrderedSet.swift
[74/79] Compiling Syntax AnnotatedError.swift
[75/79] Compiling Syntax DiagnosticError.swift
[76/79] Compiling Syntax ParserError.swift
[77/79] Compiling Syntax ScannerError.swift
[78/79] Compiling Syntax ScannerErrorHandler.swift
[79/79] Compiling Syntax WhiteSpaceConsumer.swift
Build complete! (12.60s)
Fetching https://github.com/nerdsupremacist/SyntaxTree.git from cache
Fetched https://github.com/nerdsupremacist/SyntaxTree.git from cache (0.16s)
Computing version for https://github.com/nerdsupremacist/SyntaxTree.git
Computed https://github.com/nerdsupremacist/SyntaxTree.git at 0.1.0 (0.03s)
Creating working copy for https://github.com/nerdsupremacist/SyntaxTree.git
Working copy of https://github.com/nerdsupremacist/SyntaxTree.git resolved at 0.1.0
Build complete.
Done.

Build Machine: Mac 7