The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Syntax, reference develop (1b9c20), with Swift 6.2 (beta) for Android on 19 Jun 2025 13:56:55 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nerdsupremacist/Syntax.git
Reference: develop
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/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:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/nerdsupremacist/Syntax.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Fetching https://github.com/nerdsupremacist/SyntaxTree.git
[1/29] Fetching syntaxtree
Fetched https://github.com/nerdsupremacist/SyntaxTree.git from cache (0.21s)
Computing version for https://github.com/nerdsupremacist/SyntaxTree.git
Computed https://github.com/nerdsupremacist/SyntaxTree.git at 0.1.0 (0.56s)
Creating working copy for https://github.com/nerdsupremacist/SyntaxTree.git
Working copy of https://github.com/nerdsupremacist/SyntaxTree.git resolved at 0.1.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-8C5A4AE7A8CE2BA.txt
[4/10] Compiling SyntaxTree SyntaxTreeFactory.swift
[5/10] Compiling SyntaxTree SyntaxTree.swift
[6/10] Emitting module SyntaxTree
[7/10] Compiling SyntaxTree Kind.swift
[8/10] Compiling SyntaxTree LineColumnIndex.swift
[9/10] Compiling SyntaxTree Location.swift
[10/10] Compiling SyntaxTree MutableSyntaxTree.swift
[12/72] Compiling Syntax AnnotatedString.swift
[13/72] Compiling Syntax Cache.swift
[14/72] Compiling Syntax OrderedSet.swift
[15/72] Compiling Syntax AnnotatedError.swift
[16/72] Compiling Syntax DiagnosticError.swift
[17/72] Compiling Syntax ParserError.swift
[18/72] Compiling Syntax ScannerError.swift
[19/72] Compiling Syntax ScannerErrorHandler.swift
[20/72] Compiling Syntax WhiteSpaceConsumer.swift
[21/80] Compiling Syntax Repeat.swift
[22/80] Compiling Syntax Annotated.swift
[23/80] Compiling Syntax AnnotatedUntil.swift
[24/80] Compiling Syntax Either.swift
[25/80] Compiling Syntax Group.swift
[26/80] Compiling Syntax IfElseConditionalParser.swift
[27/80] Compiling Syntax Leaf.swift
[28/80] Compiling Syntax TupleParser.swift
[29/80] Compiling Syntax EmptyParser.swift
[30/80] Compiling Syntax RegexBuilder+support.swift
[31/80] Compiling Syntax RegularExpression.swift
[32/80] Compiling Syntax String+Parser.swift
[33/80] Compiling Syntax Token.swift
[34/80] Compiling Syntax Word.swift
[35/80] Compiling Syntax neverBody.swift
[36/80] Compiling Syntax InternalParser.swift
[37/80] Compiling Syntax InternalParserBuilder.swift
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[38/80] Compiling Syntax MemoizationKey.swift
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[39/80] Compiling Syntax MemoizationStorage.swift
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[40/80] Compiling Syntax Memoized.swift
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[41/80] Compiling Syntax Node.swift
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[42/80] Compiling Syntax Parser+internalParser.swift
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[43/80] Compiling Syntax Scanner.swift
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[44/80] Compiling Syntax ScannerState.swift
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[45/80] Compiling Syntax Parser+annotate.swift
[46/80] Compiling Syntax Parser+ignoreOutput.swift
[47/80] Compiling Syntax Parser+kind.swift
[48/80] Compiling Syntax Parser+map+location.swift
[49/80] Compiling Syntax Parser+map.swift
[50/80] Compiling Syntax Parser+optimize.swift
[51/80] Compiling Syntax Parser+preventRecursion.swift
[52/80] Compiling Syntax Parser+repeatUntil.swift
[53/80] Compiling Syntax Parser+separated.swift
[54/80] Compiling Syntax MemberOfBinaryOperation.swift
[55/80] Compiling Syntax BooleanLiteral.swift
[56/80] Compiling Syntax DoubleLiteral.swift
[57/80] Compiling Syntax IntLiteral.swift
[58/80] Compiling Syntax JavaScriptEscapeStrategy.swift
[59/80] Compiling Syntax StringEscapeStrategy.swift
[60/80] Compiling Syntax StringLiteral.swift
[61/80] Compiling Syntax SwiftEscapeStrategy.swift
[62/80] Compiling Syntax Maybe.swift
[63/80] Compiling Syntax Stack.swift
[64/80] Compiling Syntax StandardInternalParserBuilderContext.swift
[65/80] Compiling Syntax StandardScanner.swift
[66/80] Compiling Syntax String+casing.swift
[67/80] Compiling Syntax Located.swift
[68/80] Compiling Syntax Parser.swift
[69/80] Compiling Syntax ParserOption.swift
[70/80] Compiling Syntax RecursiveParser.swift
[71/80] Emitting module Syntax
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
443 |     }
444 |
445 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
446 |         // No-op
447 |     }
/host/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
403 | }
404 |
405 | private final class ScanningStorage<T>: ScannerStateStorage, ScanningStorageProtocol {
    |                                     `- note: 'T' previously declared here
406 |     typealias Annotation = AnnotatedString<T>.Annotation
407 |
    :
451 |     }
452 |
453 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
454 |         return annotations.last?.value as? T
455 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
601 |     }
602 |
603 |     func store<T>(value: T) {
    |                `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
604 |         current.store(value: value)
605 |     }
/host/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
569 | }
570 |
571 | private class StackedScanningStateStorage<T>: ScannerStateStorage {
    |                                           `- note: 'T' previously declared here
572 |     let scanning: ScanningStorage<T>
573 |     let inplace: InPlaceStorage
    :
609 |     }
610 |
611 |     func pop<T>(of type: T.Type) throws -> T? {
    |              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
612 |         return try current.pop(of: type)
613 |     }
[72/80] Compiling Syntax ExpressionMatch.swift
[73/80] Compiling Syntax EitherParserBuilder.swift
[74/80] Compiling Syntax ParserBuilder.swift
[75/80] Compiling Syntax AnyParser.swift
[76/80] Compiling Syntax Associativity.swift
[77/80] Compiling Syntax BinaryOperation.swift
[78/80] Compiling Syntax BinaryOperationParser.swift
[79/80] Compiling Syntax BinaryOperationParserError.swift
[80/80] Compiling Syntax BinaryOperator.swift
Build complete! (41.45s)
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" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "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"
}
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Done.