Build Information
Successful build of SwiftSyntax, reference main (6134c2
), with Swift 6.0 for Linux on 4 Nov 2024 01:50:56 UTC.
Swift 6 data race errors: 26
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:15:18: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
13 | import SwiftBasicFormat
14 | import SwiftDiagnostics
15 | @_spi(RawSyntax) import SwiftSyntax
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
16 | @_spi(RawSyntax) import SwiftParser
17 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:412:1: warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
410 | }
411 |
412 | extension TokenSyntax: SyntaxExpressibleByStringInterpolation {
| |- warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
413 | public init(stringInterpolation: SyntaxStringInterpolation) {
414 | let string = stringInterpolation.sourceText.withUnsafeBufferPointer { buf in
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:443:1: warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
441 | }
442 |
443 | extension Trivia: ExpressibleByStringInterpolation {
| |- warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
444 | public init(stringInterpolation: String.StringInterpolation) {
445 | var text = String(stringInterpolation: stringInterpolation)
[250/271] Emitting module SwiftSyntaxBuilder
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:46:1: warning: extension declares a conformance of imported type 'BooleanLiteralExprSyntax' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
44 | // MARK: - BooleanLiteralExpr
45 |
46 | extension BooleanLiteralExprSyntax: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'BooleanLiteralExprSyntax' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
47 | public init(_ value: Bool) {
48 | self.init(booleanLiteral: value ? .keyword(.true) : .keyword(.false))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:131:1: warning: extension declares a conformance of imported type 'FloatLiteralExprSyntax' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
129 | // MARK: - FloatLiteralExprSyntax
130 |
131 | extension FloatLiteralExprSyntax: ExpressibleByFloatLiteral {
| |- warning: extension declares a conformance of imported type 'FloatLiteralExprSyntax' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
132 | public init(_ value: Float) {
133 | self.init(floatingDigits: .floatingLiteral(String(value)))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:168:1: warning: extension declares a conformance of imported type 'IntegerLiteralExprSyntax' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
166 | // MARK: - IntegerLiteralExpr
167 |
168 | extension IntegerLiteralExprSyntax: ExpressibleByIntegerLiteral {
| |- warning: extension declares a conformance of imported type 'IntegerLiteralExprSyntax' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
169 | public init(_ value: Int) {
170 | self.init(digits: .integerLiteral(String(value)))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:140:8: warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
138 | enum SyntaxStringInterpolationError: Error, CustomStringConvertible {
139 | case producedInvalidNodeType(expectedType: SyntaxProtocol.Type, actualType: SyntaxProtocol.Type)
140 | case diagnostics([Diagnostic], tree: Syntax)
| `- warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
141 |
142 | static func producedInvalidNodeType<S: SyntaxProtocol>(expectedType: SyntaxProtocol.Type, actualNode: S) -> Self {
/host/spi-builder-workspace/Sources/SwiftDiagnostics/Diagnostic.swift:15:15: note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
13 | import SwiftSyntax
14 |
15 | public struct Diagnostic: CustomDebugStringConvertible {
| `- note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
16 | /// The message that should be displayed to the user
17 | public let diagMessage: DiagnosticMessage
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
12 |
13 | import SwiftBasicFormat
14 | import SwiftDiagnostics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
15 | @_spi(RawSyntax) import SwiftSyntax
16 | @_spi(RawSyntax) import SwiftParser
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:140:8: warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
138 | enum SyntaxStringInterpolationError: Error, CustomStringConvertible {
139 | case producedInvalidNodeType(expectedType: SyntaxProtocol.Type, actualType: SyntaxProtocol.Type)
140 | case diagnostics([Diagnostic], tree: Syntax)
| `- warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
141 |
142 | static func producedInvalidNodeType<S: SyntaxProtocol>(expectedType: SyntaxProtocol.Type, actualNode: S) -> Self {
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:15:18: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
13 | import SwiftBasicFormat
14 | import SwiftDiagnostics
15 | @_spi(RawSyntax) import SwiftSyntax
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
16 | @_spi(RawSyntax) import SwiftParser
17 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:412:1: warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
410 | }
411 |
412 | extension TokenSyntax: SyntaxExpressibleByStringInterpolation {
| |- warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
413 | public init(stringInterpolation: SyntaxStringInterpolation) {
414 | let string = stringInterpolation.sourceText.withUnsafeBufferPointer { buf in
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:443:1: warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
441 | }
442 |
443 | extension Trivia: ExpressibleByStringInterpolation {
| |- warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
444 | public init(stringInterpolation: String.StringInterpolation) {
445 | var text = String(stringInterpolation: stringInterpolation)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:18:1: warning: extension declares a conformance of imported type 'AccessPathSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
16 |
17 | /// `AccessPath` represents a collection of `AccessPathComponentSyntax`
18 | extension AccessPathSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AccessPathSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | public init(arrayLiteral elements: Element...) {
20 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:25:1: warning: extension declares a conformance of imported type 'AccessorListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
23 |
24 | /// `AccessorList` represents a collection of `AccessorDeclSyntax`
25 | extension AccessorListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AccessorListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public init(arrayLiteral elements: Element...) {
27 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:32:1: warning: extension declares a conformance of imported type 'ArrayElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
30 |
31 | /// `ArrayElementList` represents a collection of `ArrayElementSyntax`
32 | extension ArrayElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ArrayElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
33 | public init(arrayLiteral elements: Element...) {
34 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:39:1: warning: extension declares a conformance of imported type 'AttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
37 |
38 | /// `AttributeList` represents a collection of `Syntax`
39 | extension AttributeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(arrayLiteral elements: Element...) {
41 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:46:1: warning: extension declares a conformance of imported type 'AvailabilitySpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
44 |
45 | /// `AvailabilitySpecList` represents a collection of `AvailabilityArgumentSyntax`
46 | extension AvailabilitySpecListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AvailabilitySpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
47 | public init(arrayLiteral elements: Element...) {
48 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:53:1: warning: extension declares a conformance of imported type 'AvailabilityVersionRestrictionListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
51 |
52 | /// `AvailabilityVersionRestrictionList` represents a collection of `AvailabilityVersionRestrictionListEntrySyntax`
53 | extension AvailabilityVersionRestrictionListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AvailabilityVersionRestrictionListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
54 | public init(arrayLiteral elements: Element...) {
55 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:60:1: warning: extension declares a conformance of imported type 'CaseItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
58 |
59 | /// `CaseItemList` represents a collection of `CaseItemSyntax`
60 | extension CaseItemListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CaseItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
61 | public init(arrayLiteral elements: Element...) {
62 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:67:1: warning: extension declares a conformance of imported type 'CatchClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
65 |
66 | /// `CatchClauseList` represents a collection of `CatchClauseSyntax`
67 | extension CatchClauseListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CatchClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
68 | public init(arrayLiteral elements: Element...) {
69 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:74:1: warning: extension declares a conformance of imported type 'CatchItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
72 |
73 | /// `CatchItemList` represents a collection of `CatchItemSyntax`
74 | extension CatchItemListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CatchItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
75 | public init(arrayLiteral elements: Element...) {
76 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:81:1: warning: extension declares a conformance of imported type 'ClosureCaptureItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
79 |
80 | /// `ClosureCaptureItemList` represents a collection of `ClosureCaptureItemSyntax`
81 | extension ClosureCaptureItemListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ClosureCaptureItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
82 | public init(arrayLiteral elements: Element...) {
83 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:88:1: warning: extension declares a conformance of imported type 'ClosureParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
86 |
87 | /// `ClosureParamList` represents a collection of `ClosureParamSyntax`
88 | extension ClosureParamListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ClosureParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
89 | public init(arrayLiteral elements: Element...) {
90 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:95:1: warning: extension declares a conformance of imported type 'ClosureParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
93 |
94 | /// `ClosureParameterList` represents a collection of `ClosureParameterSyntax`
95 | extension ClosureParameterListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ClosureParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
96 | public init(arrayLiteral elements: Element...) {
97 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:102:1: warning: extension declares a conformance of imported type 'CodeBlockItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
100 |
101 | /// `CodeBlockItemList` represents a collection of `CodeBlockItemSyntax`
102 | extension CodeBlockItemListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CodeBlockItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
103 | public init(arrayLiteral elements: Element...) {
104 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:109:1: warning: extension declares a conformance of imported type 'CompositionTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
107 |
108 | /// `CompositionTypeElementList` represents a collection of `CompositionTypeElementSyntax`
109 | extension CompositionTypeElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CompositionTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
110 | public init(arrayLiteral elements: Element...) {
111 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:116:1: warning: extension declares a conformance of imported type 'ConditionElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
114 |
115 | /// `ConditionElementList` represents a collection of `ConditionElementSyntax`
116 | extension ConditionElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ConditionElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 | public init(arrayLiteral elements: Element...) {
118 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:123:1: warning: extension declares a conformance of imported type 'DeclNameArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
121 |
122 | /// `DeclNameArgumentList` represents a collection of `DeclNameArgumentSyntax`
123 | extension DeclNameArgumentListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DeclNameArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
124 | public init(arrayLiteral elements: Element...) {
125 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:130:1: warning: extension declares a conformance of imported type 'DesignatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
128 |
129 | /// `DesignatedTypeList` represents a collection of `DesignatedTypeElementSyntax`
130 | extension DesignatedTypeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DesignatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
131 | public init(arrayLiteral elements: Element...) {
132 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:137:1: warning: extension declares a conformance of imported type 'DictionaryElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
135 |
136 | /// `DictionaryElementList` represents a collection of `DictionaryElementSyntax`
137 | extension DictionaryElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DictionaryElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
138 | public init(arrayLiteral elements: Element...) {
139 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:144:1: warning: extension declares a conformance of imported type 'DifferentiabilityParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
142 |
143 | /// `DifferentiabilityParamList` represents a collection of `DifferentiabilityParamSyntax`
144 | extension DifferentiabilityParamListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DifferentiabilityParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
145 | public init(arrayLiteral elements: Element...) {
146 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:151:1: warning: extension declares a conformance of imported type 'DocumentationAttributeArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
149 |
150 | /// The arguments of the '@_documentation' attribute
151 | extension DocumentationAttributeArgumentsSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DocumentationAttributeArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
152 | public init(arrayLiteral elements: Element...) {
153 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:158:1: warning: extension declares a conformance of imported type 'EffectsArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
156 |
157 | /// The arguments of the '@_effect' attribute. These will be parsed during the SIL stage.
158 | extension EffectsArgumentsSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'EffectsArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
159 | public init(arrayLiteral elements: Element...) {
160 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:165:1: warning: extension declares a conformance of imported type 'EnumCaseElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
163 |
164 | /// A collection of 0 or more `EnumCaseElement`s.
165 | extension EnumCaseElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'EnumCaseElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
166 | public init(arrayLiteral elements: Element...) {
167 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:172:1: warning: extension declares a conformance of imported type 'EnumCaseParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
170 |
171 | /// `EnumCaseParameterList` represents a collection of `EnumCaseParameterSyntax`
172 | extension EnumCaseParameterListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'EnumCaseParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
173 | public init(arrayLiteral elements: Element...) {
174 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:179:1: warning: extension declares a conformance of imported type 'ExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
177 |
178 | /// A list of expressions connected by operators. This list is contained by a `SequenceExprSyntax`.
179 | extension ExprListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
180 | public init(_ elements: [ExprSyntaxProtocol]) {
181 | self = ExprListSyntax(elements.map {
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:192:1: warning: extension declares a conformance of imported type 'FunctionParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
190 |
191 | /// `FunctionParameterList` represents a collection of `FunctionParameterSyntax`
192 | extension FunctionParameterListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'FunctionParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
193 | public init(arrayLiteral elements: Element...) {
194 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:199:1: warning: extension declares a conformance of imported type 'GenericArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
197 |
198 | /// `GenericArgumentList` represents a collection of `GenericArgumentSyntax`
199 | extension GenericArgumentListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'GenericArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
200 | public init(arrayLiteral elements: Element...) {
201 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:206:1: warning: extension declares a conformance of imported type 'GenericParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
204 |
205 | /// `GenericParameterList` represents a collection of `GenericParameterSyntax`
206 | extension GenericParameterListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'GenericParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
207 | public init(arrayLiteral elements: Element...) {
208 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:213:1: warning: extension declares a conformance of imported type 'GenericRequirementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
211 |
212 | /// `GenericRequirementList` represents a collection of `GenericRequirementSyntax`
213 | extension GenericRequirementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'GenericRequirementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
214 | public init(arrayLiteral elements: Element...) {
215 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:220:1: warning: extension declares a conformance of imported type 'IfConfigClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
218 |
219 | /// `IfConfigClauseList` represents a collection of `IfConfigClauseSyntax`
220 | extension IfConfigClauseListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'IfConfigClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
221 | public init(arrayLiteral elements: Element...) {
222 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:227:1: warning: extension declares a conformance of imported type 'InheritedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
225 |
226 | /// `InheritedTypeList` represents a collection of `InheritedTypeSyntax`
227 | extension InheritedTypeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'InheritedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
228 | public init(arrayLiteral elements: Element...) {
229 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:234:1: warning: extension declares a conformance of imported type 'KeyPathComponentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
232 |
233 | /// `KeyPathComponentList` represents a collection of `KeyPathComponentSyntax`
234 | extension KeyPathComponentListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'KeyPathComponentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
235 | public init(arrayLiteral elements: Element...) {
236 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:241:1: warning: extension declares a conformance of imported type 'MemberDeclListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
239 |
240 | /// `MemberDeclList` represents a collection of `MemberDeclListItemSyntax`
241 | extension MemberDeclListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'MemberDeclListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
242 | public init(arrayLiteral elements: Element...) {
243 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:248:1: warning: extension declares a conformance of imported type 'ModifierListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
246 |
247 | /// `ModifierList` represents a collection of `DeclModifierSyntax`
248 | extension ModifierListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ModifierListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
249 | public init(arrayLiteral elements: Element...) {
250 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:255:1: warning: extension declares a conformance of imported type 'MultipleTrailingClosureElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
253 |
254 | /// `MultipleTrailingClosureElementList` represents a collection of `MultipleTrailingClosureElementSyntax`
255 | extension MultipleTrailingClosureElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'MultipleTrailingClosureElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
256 | public init(arrayLiteral elements: Element...) {
257 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:262:1: warning: extension declares a conformance of imported type 'ObjCSelectorSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
260 |
261 | /// `ObjCSelector` represents a collection of `ObjCSelectorPieceSyntax`
262 | extension ObjCSelectorSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ObjCSelectorSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(arrayLiteral elements: Element...) {
264 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:269:1: warning: extension declares a conformance of imported type 'PatternBindingListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
267 |
268 | /// `PatternBindingList` represents a collection of `PatternBindingSyntax`
269 | extension PatternBindingListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'PatternBindingListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
270 | public init(arrayLiteral elements: Element...) {
271 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:276:1: warning: extension declares a conformance of imported type 'PrecedenceGroupAttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
274 |
275 | /// `PrecedenceGroupAttributeList` represents a collection of `Syntax`
276 | extension PrecedenceGroupAttributeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'PrecedenceGroupAttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
277 | public init(arrayLiteral elements: Element...) {
278 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:283:1: warning: extension declares a conformance of imported type 'PrecedenceGroupNameListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
281 |
282 | /// `PrecedenceGroupNameList` represents a collection of `PrecedenceGroupNameElementSyntax`
283 | extension PrecedenceGroupNameListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'PrecedenceGroupNameListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
284 | public init(arrayLiteral elements: Element...) {
285 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:290:1: warning: extension declares a conformance of imported type 'PrimaryAssociatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
288 |
289 | /// `PrimaryAssociatedTypeList` represents a collection of `PrimaryAssociatedTypeSyntax`
290 | extension PrimaryAssociatedTypeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'PrimaryAssociatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
291 | public init(arrayLiteral elements: Element...) {
292 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:297:1: warning: extension declares a conformance of imported type 'SpecializeAttributeSpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
295 |
296 | /// A collection of arguments for the `@_specialize` attribute
297 | extension SpecializeAttributeSpecListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'SpecializeAttributeSpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
298 | public init(arrayLiteral elements: Element...) {
299 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:304:1: warning: extension declares a conformance of imported type 'StringLiteralSegmentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
302 |
303 | /// `StringLiteralSegments` represents a collection of `Syntax`
304 | extension StringLiteralSegmentsSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'StringLiteralSegmentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
305 | public init(arrayLiteral elements: Element...) {
306 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:311:1: warning: extension declares a conformance of imported type 'SwitchCaseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
309 |
310 | /// `SwitchCaseList` represents a collection of `Syntax`
311 | extension SwitchCaseListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'SwitchCaseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
312 | public init(arrayLiteral elements: Element...) {
313 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:318:1: warning: extension declares a conformance of imported type 'TupleExprElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
316 |
317 | /// `TupleExprElementList` represents a collection of `TupleExprElementSyntax`
318 | extension TupleExprElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'TupleExprElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
319 | public init(arrayLiteral elements: Element...) {
320 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:325:1: warning: extension declares a conformance of imported type 'TuplePatternElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
323 |
324 | /// `TuplePatternElementList` represents a collection of `TuplePatternElementSyntax`
325 | extension TuplePatternElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'TuplePatternElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
326 | public init(arrayLiteral elements: Element...) {
327 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:332:1: warning: extension declares a conformance of imported type 'TupleTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
330 |
331 | /// `TupleTypeElementList` represents a collection of `TupleTypeElementSyntax`
332 | extension TupleTypeElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'TupleTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
333 | public init(arrayLiteral elements: Element...) {
334 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:339:1: warning: extension declares a conformance of imported type 'UnexpectedNodesSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
337 |
338 | /// A collection of syntax nodes that occurred in the source code but could not be used to form a valid syntax tree.
339 | extension UnexpectedNodesSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'UnexpectedNodesSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
340 | public init(_ elements: [SyntaxProtocol]) {
341 | self = UnexpectedNodesSyntax(elements.map {
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:352:1: warning: extension declares a conformance of imported type 'YieldExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
350 |
351 | /// `YieldExprList` represents a collection of `YieldExprListElementSyntax`
352 | extension YieldExprListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'YieldExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
353 | public init(arrayLiteral elements: Element...) {
354 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:29:1: warning: extension declares a conformance of imported type 'AccessorDeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
27 | }
28 |
29 | extension AccessorDeclSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'AccessorDeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 |
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:31:1: warning: extension declares a conformance of imported type 'AttributeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
29 | extension AccessorDeclSyntax: SyntaxExpressibleByStringInterpolation {}
30 |
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'AttributeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
32 |
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:33:1: warning: extension declares a conformance of imported type 'CatchClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
32 |
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'CatchClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 |
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:35:1: warning: extension declares a conformance of imported type 'ClosureParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
34 |
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'ClosureParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
36 |
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:37:1: warning: extension declares a conformance of imported type 'DeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
36 |
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'DeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
38 |
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:39:1: warning: extension declares a conformance of imported type 'EnumCaseParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
38 |
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'EnumCaseParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 |
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:41:1: warning: extension declares a conformance of imported type 'ExprSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
40 |
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'ExprSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
42 |
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:43:1: warning: extension declares a conformance of imported type 'FunctionParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
42 |
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'FunctionParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
44 |
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:45:1: warning: extension declares a conformance of imported type 'GenericParameterClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
44 |
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'GenericParameterClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 |
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:47:1: warning: extension declares a conformance of imported type 'MemberDeclBlockSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
46 |
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'MemberDeclBlockSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
48 |
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:49:1: warning: extension declares a conformance of imported type 'PatternSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
48 |
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'PatternSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
50 |
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:51:1: warning: extension declares a conformance of imported type 'SourceFileSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
50 |
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'SourceFileSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 |
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:53:1: warning: extension declares a conformance of imported type 'StmtSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
52 |
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'StmtSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
54 |
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:55:1: warning: extension declares a conformance of imported type 'SwitchCaseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
54 |
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'SwitchCaseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
56 |
57 | extension TypeSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:57:1: warning: extension declares a conformance of imported type 'TypeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
56 |
57 | extension TypeSyntax: SyntaxExpressibleByStringInterpolation {}
| |- warning: extension declares a conformance of imported type 'TypeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 |
59 | // TODO: This should be inlined in SyntaxParseable.init(stringInterpolation:),
[251/271] Compiling swift_parser_cli TerminalUtils.swift
/host/spi-builder-workspace/Sources/swift-parser-cli/TerminalUtils.swift:29:18: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
27 | enum TerminalHelper {
28 | static var isConnectedToTerminal: Bool {
29 | return isTTY(stderr)
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
30 | }
31 |
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
| `- note: var declared here
[252/271] Compiling swift_parser_cli swift-parser-cli.swift
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:80:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
78 | required init() {}
79 |
80 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | abstract: "Utility to test SwiftSyntax syntax tree creation.",
82 | subcommands: [
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:95:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
93 | required init() {}
94 |
95 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
96 | commandName: "verify-round-trip",
97 | abstract: "Verify that printing the parsed syntax tree produces the original source"
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:158:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
156 |
157 | class PerformanceTest: ParsableCommand {
158 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 | commandName: "performance-test",
160 | abstract: "Parse all .swift files in '--directory' and its subdirectories '--iteration' times and output the average time (in milliseconds) one iteration took."
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:202:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
200 |
201 | class PrintDiags: ParsableCommand {
202 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | commandName: "print-diags",
204 | abstract: "Print the diagnostics produced by parsing a soruce file"
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:245:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
243 |
244 | class PrintTree: ParsableCommand {
245 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 | commandName: "print-tree",
247 | abstract: "Print the syntax tree produced by parsing a source file"
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:280:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
278 |
279 | class Reduce: ParsableCommand {
280 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
281 | commandName: "reduce",
282 | abstract: "Reduce a test case that crashes the parser or fails to round-trip to a smaller test case that still reproduces the issue"
[253/271] Emitting module swift_parser_cli
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:80:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
78 | required init() {}
79 |
80 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | abstract: "Utility to test SwiftSyntax syntax tree creation.",
82 | subcommands: [
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:95:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
93 | required init() {}
94 |
95 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
96 | commandName: "verify-round-trip",
97 | abstract: "Verify that printing the parsed syntax tree produces the original source"
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:158:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
156 |
157 | class PerformanceTest: ParsableCommand {
158 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 | commandName: "performance-test",
160 | abstract: "Parse all .swift files in '--directory' and its subdirectories '--iteration' times and output the average time (in milliseconds) one iteration took."
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:202:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
200 |
201 | class PrintDiags: ParsableCommand {
202 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | commandName: "print-diags",
204 | abstract: "Print the diagnostics produced by parsing a soruce file"
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:245:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
243 |
244 | class PrintTree: ParsableCommand {
245 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 | commandName: "print-tree",
247 | abstract: "Print the syntax tree produced by parsing a source file"
/host/spi-builder-workspace/Sources/swift-parser-cli/swift-parser-cli.swift:280:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
278 |
279 | class Reduce: ParsableCommand {
280 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
281 | commandName: "reduce",
282 | abstract: "Reduce a test case that crashes the parser or fails to round-trip to a smaller test case that still reproduces the issue"
[254/272] Wrapping AST for swift-parser-cli for debugging
[255/272] Write Objects.LinkFileList
[257/272] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[258/272] Compiling SwiftSyntaxBuilder BuildableCollectionNodes.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:18:1: warning: extension declares a conformance of imported type 'AccessPathSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
16 |
17 | /// `AccessPath` represents a collection of `AccessPathComponentSyntax`
18 | extension AccessPathSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AccessPathSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | public init(arrayLiteral elements: Element...) {
20 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:25:1: warning: extension declares a conformance of imported type 'AccessorListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
23 |
24 | /// `AccessorList` represents a collection of `AccessorDeclSyntax`
25 | extension AccessorListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AccessorListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public init(arrayLiteral elements: Element...) {
27 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:32:1: warning: extension declares a conformance of imported type 'ArrayElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
30 |
31 | /// `ArrayElementList` represents a collection of `ArrayElementSyntax`
32 | extension ArrayElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ArrayElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
33 | public init(arrayLiteral elements: Element...) {
34 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:39:1: warning: extension declares a conformance of imported type 'AttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
37 |
38 | /// `AttributeList` represents a collection of `Syntax`
39 | extension AttributeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(arrayLiteral elements: Element...) {
41 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:46:1: warning: extension declares a conformance of imported type 'AvailabilitySpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
44 |
45 | /// `AvailabilitySpecList` represents a collection of `AvailabilityArgumentSyntax`
46 | extension AvailabilitySpecListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AvailabilitySpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
47 | public init(arrayLiteral elements: Element...) {
48 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:53:1: warning: extension declares a conformance of imported type 'AvailabilityVersionRestrictionListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
51 |
52 | /// `AvailabilityVersionRestrictionList` represents a collection of `AvailabilityVersionRestrictionListEntrySyntax`
53 | extension AvailabilityVersionRestrictionListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'AvailabilityVersionRestrictionListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
54 | public init(arrayLiteral elements: Element...) {
55 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:60:1: warning: extension declares a conformance of imported type 'CaseItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
58 |
59 | /// `CaseItemList` represents a collection of `CaseItemSyntax`
60 | extension CaseItemListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CaseItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
61 | public init(arrayLiteral elements: Element...) {
62 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:67:1: warning: extension declares a conformance of imported type 'CatchClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
65 |
66 | /// `CatchClauseList` represents a collection of `CatchClauseSyntax`
67 | extension CatchClauseListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CatchClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
68 | public init(arrayLiteral elements: Element...) {
69 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:74:1: warning: extension declares a conformance of imported type 'CatchItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
72 |
73 | /// `CatchItemList` represents a collection of `CatchItemSyntax`
74 | extension CatchItemListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CatchItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
75 | public init(arrayLiteral elements: Element...) {
76 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:81:1: warning: extension declares a conformance of imported type 'ClosureCaptureItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
79 |
80 | /// `ClosureCaptureItemList` represents a collection of `ClosureCaptureItemSyntax`
81 | extension ClosureCaptureItemListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ClosureCaptureItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
82 | public init(arrayLiteral elements: Element...) {
83 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:88:1: warning: extension declares a conformance of imported type 'ClosureParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
86 |
87 | /// `ClosureParamList` represents a collection of `ClosureParamSyntax`
88 | extension ClosureParamListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ClosureParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
89 | public init(arrayLiteral elements: Element...) {
90 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:95:1: warning: extension declares a conformance of imported type 'ClosureParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
93 |
94 | /// `ClosureParameterList` represents a collection of `ClosureParameterSyntax`
95 | extension ClosureParameterListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ClosureParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
96 | public init(arrayLiteral elements: Element...) {
97 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:102:1: warning: extension declares a conformance of imported type 'CodeBlockItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
100 |
101 | /// `CodeBlockItemList` represents a collection of `CodeBlockItemSyntax`
102 | extension CodeBlockItemListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CodeBlockItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
103 | public init(arrayLiteral elements: Element...) {
104 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:109:1: warning: extension declares a conformance of imported type 'CompositionTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
107 |
108 | /// `CompositionTypeElementList` represents a collection of `CompositionTypeElementSyntax`
109 | extension CompositionTypeElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'CompositionTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
110 | public init(arrayLiteral elements: Element...) {
111 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:116:1: warning: extension declares a conformance of imported type 'ConditionElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
114 |
115 | /// `ConditionElementList` represents a collection of `ConditionElementSyntax`
116 | extension ConditionElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ConditionElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 | public init(arrayLiteral elements: Element...) {
118 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:123:1: warning: extension declares a conformance of imported type 'DeclNameArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
121 |
122 | /// `DeclNameArgumentList` represents a collection of `DeclNameArgumentSyntax`
123 | extension DeclNameArgumentListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DeclNameArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
124 | public init(arrayLiteral elements: Element...) {
125 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:130:1: warning: extension declares a conformance of imported type 'DesignatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
128 |
129 | /// `DesignatedTypeList` represents a collection of `DesignatedTypeElementSyntax`
130 | extension DesignatedTypeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DesignatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
131 | public init(arrayLiteral elements: Element...) {
132 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:137:1: warning: extension declares a conformance of imported type 'DictionaryElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
135 |
136 | /// `DictionaryElementList` represents a collection of `DictionaryElementSyntax`
137 | extension DictionaryElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DictionaryElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
138 | public init(arrayLiteral elements: Element...) {
139 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:144:1: warning: extension declares a conformance of imported type 'DifferentiabilityParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
142 |
143 | /// `DifferentiabilityParamList` represents a collection of `DifferentiabilityParamSyntax`
144 | extension DifferentiabilityParamListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DifferentiabilityParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
145 | public init(arrayLiteral elements: Element...) {
146 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:151:1: warning: extension declares a conformance of imported type 'DocumentationAttributeArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
149 |
150 | /// The arguments of the '@_documentation' attribute
151 | extension DocumentationAttributeArgumentsSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'DocumentationAttributeArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
152 | public init(arrayLiteral elements: Element...) {
153 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:158:1: warning: extension declares a conformance of imported type 'EffectsArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
156 |
157 | /// The arguments of the '@_effect' attribute. These will be parsed during the SIL stage.
158 | extension EffectsArgumentsSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'EffectsArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
159 | public init(arrayLiteral elements: Element...) {
160 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:165:1: warning: extension declares a conformance of imported type 'EnumCaseElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
163 |
164 | /// A collection of 0 or more `EnumCaseElement`s.
165 | extension EnumCaseElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'EnumCaseElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
166 | public init(arrayLiteral elements: Element...) {
167 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:172:1: warning: extension declares a conformance of imported type 'EnumCaseParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
170 |
171 | /// `EnumCaseParameterList` represents a collection of `EnumCaseParameterSyntax`
172 | extension EnumCaseParameterListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'EnumCaseParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
173 | public init(arrayLiteral elements: Element...) {
174 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:179:1: warning: extension declares a conformance of imported type 'ExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
177 |
178 | /// A list of expressions connected by operators. This list is contained by a `SequenceExprSyntax`.
179 | extension ExprListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
180 | public init(_ elements: [ExprSyntaxProtocol]) {
181 | self = ExprListSyntax(elements.map {
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:192:1: warning: extension declares a conformance of imported type 'FunctionParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
190 |
191 | /// `FunctionParameterList` represents a collection of `FunctionParameterSyntax`
192 | extension FunctionParameterListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'FunctionParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
193 | public init(arrayLiteral elements: Element...) {
194 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:199:1: warning: extension declares a conformance of imported type 'GenericArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
197 |
198 | /// `GenericArgumentList` represents a collection of `GenericArgumentSyntax`
199 | extension GenericArgumentListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'GenericArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
200 | public init(arrayLiteral elements: Element...) {
201 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:206:1: warning: extension declares a conformance of imported type 'GenericParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
204 |
205 | /// `GenericParameterList` represents a collection of `GenericParameterSyntax`
206 | extension GenericParameterListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'GenericParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
207 | public init(arrayLiteral elements: Element...) {
208 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:213:1: warning: extension declares a conformance of imported type 'GenericRequirementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
211 |
212 | /// `GenericRequirementList` represents a collection of `GenericRequirementSyntax`
213 | extension GenericRequirementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'GenericRequirementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
214 | public init(arrayLiteral elements: Element...) {
215 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:220:1: warning: extension declares a conformance of imported type 'IfConfigClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
218 |
219 | /// `IfConfigClauseList` represents a collection of `IfConfigClauseSyntax`
220 | extension IfConfigClauseListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'IfConfigClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
221 | public init(arrayLiteral elements: Element...) {
222 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:227:1: warning: extension declares a conformance of imported type 'InheritedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
225 |
226 | /// `InheritedTypeList` represents a collection of `InheritedTypeSyntax`
227 | extension InheritedTypeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'InheritedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
228 | public init(arrayLiteral elements: Element...) {
229 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:234:1: warning: extension declares a conformance of imported type 'KeyPathComponentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
232 |
233 | /// `KeyPathComponentList` represents a collection of `KeyPathComponentSyntax`
234 | extension KeyPathComponentListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'KeyPathComponentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
235 | public init(arrayLiteral elements: Element...) {
236 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:241:1: warning: extension declares a conformance of imported type 'MemberDeclListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
239 |
240 | /// `MemberDeclList` represents a collection of `MemberDeclListItemSyntax`
241 | extension MemberDeclListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'MemberDeclListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
242 | public init(arrayLiteral elements: Element...) {
243 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:248:1: warning: extension declares a conformance of imported type 'ModifierListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
246 |
247 | /// `ModifierList` represents a collection of `DeclModifierSyntax`
248 | extension ModifierListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ModifierListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
249 | public init(arrayLiteral elements: Element...) {
250 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:255:1: warning: extension declares a conformance of imported type 'MultipleTrailingClosureElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
253 |
254 | /// `MultipleTrailingClosureElementList` represents a collection of `MultipleTrailingClosureElementSyntax`
255 | extension MultipleTrailingClosureElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'MultipleTrailingClosureElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
256 | public init(arrayLiteral elements: Element...) {
257 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:262:1: warning: extension declares a conformance of imported type 'ObjCSelectorSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
260 |
261 | /// `ObjCSelector` represents a collection of `ObjCSelectorPieceSyntax`
262 | extension ObjCSelectorSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'ObjCSelectorSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(arrayLiteral elements: Element...) {
264 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:269:1: warning: extension declares a conformance of imported type 'PatternBindingListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
267 |
268 | /// `PatternBindingList` represents a collection of `PatternBindingSyntax`
269 | extension PatternBindingListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'PatternBindingListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
270 | public init(arrayLiteral elements: Element...) {
271 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:276:1: warning: extension declares a conformance of imported type 'PrecedenceGroupAttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
274 |
275 | /// `PrecedenceGroupAttributeList` represents a collection of `Syntax`
276 | extension PrecedenceGroupAttributeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'PrecedenceGroupAttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
277 | public init(arrayLiteral elements: Element...) {
278 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:283:1: warning: extension declares a conformance of imported type 'PrecedenceGroupNameListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
281 |
282 | /// `PrecedenceGroupNameList` represents a collection of `PrecedenceGroupNameElementSyntax`
283 | extension PrecedenceGroupNameListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'PrecedenceGroupNameListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
284 | public init(arrayLiteral elements: Element...) {
285 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:290:1: warning: extension declares a conformance of imported type 'PrimaryAssociatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
288 |
289 | /// `PrimaryAssociatedTypeList` represents a collection of `PrimaryAssociatedTypeSyntax`
290 | extension PrimaryAssociatedTypeListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'PrimaryAssociatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
291 | public init(arrayLiteral elements: Element...) {
292 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:297:1: warning: extension declares a conformance of imported type 'SpecializeAttributeSpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
295 |
296 | /// A collection of arguments for the `@_specialize` attribute
297 | extension SpecializeAttributeSpecListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'SpecializeAttributeSpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
298 | public init(arrayLiteral elements: Element...) {
299 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:304:1: warning: extension declares a conformance of imported type 'StringLiteralSegmentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
302 |
303 | /// `StringLiteralSegments` represents a collection of `Syntax`
304 | extension StringLiteralSegmentsSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'StringLiteralSegmentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
305 | public init(arrayLiteral elements: Element...) {
306 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:311:1: warning: extension declares a conformance of imported type 'SwitchCaseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
309 |
310 | /// `SwitchCaseList` represents a collection of `Syntax`
311 | extension SwitchCaseListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'SwitchCaseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
312 | public init(arrayLiteral elements: Element...) {
313 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:318:1: warning: extension declares a conformance of imported type 'TupleExprElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
316 |
317 | /// `TupleExprElementList` represents a collection of `TupleExprElementSyntax`
318 | extension TupleExprElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'TupleExprElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
319 | public init(arrayLiteral elements: Element...) {
320 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:325:1: warning: extension declares a conformance of imported type 'TuplePatternElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
323 |
324 | /// `TuplePatternElementList` represents a collection of `TuplePatternElementSyntax`
325 | extension TuplePatternElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'TuplePatternElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
326 | public init(arrayLiteral elements: Element...) {
327 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:332:1: warning: extension declares a conformance of imported type 'TupleTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
330 |
331 | /// `TupleTypeElementList` represents a collection of `TupleTypeElementSyntax`
332 | extension TupleTypeElementListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'TupleTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
333 | public init(arrayLiteral elements: Element...) {
334 | self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:339:1: warning: extension declares a conformance of imported type 'UnexpectedNodesSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
337 |
338 | /// A collection of syntax nodes that occurred in the source code but could not be used to form a valid syntax tree.
339 | extension UnexpectedNodesSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'UnexpectedNodesSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
340 | public init(_ elements: [SyntaxProtocol]) {
341 | self = UnexpectedNodesSyntax(elements.map {
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:352:1: warning: extension declares a conformance of imported type 'YieldExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
350 |
351 | /// `YieldExprList` represents a collection of `YieldExprListElementSyntax`
352 | extension YieldExprListSyntax: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'YieldExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
353 | public init(arrayLiteral elements: Element...) {
354 | self.init(elements)
[259/272] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[260/278] Wrapping AST for SwiftSyntaxBuilder for debugging
[261/278] Write Objects.LinkFileList
[262/281] Archiving libSwiftSyntaxBuilder.a
[264/298] Compiling _SwiftSyntaxTestSupport String+TrimmingTrailingWhitespace.swift
[264/299] Linking swift-parser-cli
[266/299] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[267/299] Compiling SwiftSyntaxMacros MemberMacro.swift
[268/301] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[269/301] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[270/301] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[271/301] Compiling SwiftSyntaxMacros Macro.swift
[272/301] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[273/301] Compiling SwiftSyntaxMacros ConformanceMacro.swift
[274/301] Compiling _SwiftSyntaxTestSupport LocationMarkers.swift
[275/301] Compiling _SwiftSyntaxTestSupport AssertEqualWithDiff.swift
[276/301] Compiling _SwiftSyntaxTestSupport TestUtils.swift
[277/301] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[278/301] Compiling SwiftSyntaxMacros AccessorMacro.swift
[279/301] Compiling SwiftSyntaxMacros AttachedMacro.swift
[280/301] Compiling _SwiftSyntaxTestSupport SyntaxComparison.swift
[281/301] Emitting module _SwiftSyntaxTestSupport
/host/spi-builder-workspace/Sources/_SwiftSyntaxTestSupport/Syntax+Assertions.swift:129:8: warning: associated value 'invalidSubtree(tree:afterUTF8Offset:type:)' of 'Sendable'-conforming enum 'SubtreeError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
127 | public enum SubtreeError: Error, CustomStringConvertible {
128 | case invalidMarker(name: String)
129 | case invalidSubtree(tree: Syntax, afterUTF8Offset: Int, type: String)
| `- warning: associated value 'invalidSubtree(tree:afterUTF8Offset:type:)' of 'Sendable'-conforming enum 'SubtreeError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
130 |
131 | public var description: String {
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/_SwiftSyntaxTestSupport/Syntax+Assertions.swift:17:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
15 | //===----------------------------------------------------------------------===//
16 |
17 | import SwiftSyntax
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
18 | import XCTest
19 |
[282/301] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/BasicMacroExpansionContext.swift:105:1: warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
103 |
104 | }
105 | extension BasicMacroExpansionContext: MacroExpansionContext {
| `- warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
106 | /// Generate a unique name for use in the macro.
107 | public func makeUniqueName(_ providedName: String) -> TokenSyntax {
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroExpansionContext.swift:132:15: note: 'location(of:at:filePathMode:)' declared here
74 | /// expansion context knows about.
75 | @_disfavoredOverload
76 | func location<Node: SyntaxProtocol>(
| `- note: requirement 'location(of:at:filePathMode:)' declared here
77 | of node: Node,
78 | at position: PositionInSyntaxNode,
:
130 | @_disfavoredOverload
131 | @available(*, deprecated, message: "Please use AbstractSourceLocation version")
132 | public func location<Node: SyntaxProtocol>(
| `- note: 'location(of:at:filePathMode:)' declared here
133 | of node: Node,
134 | at position: PositionInSyntaxNode,
[283/301] Compiling SwiftSyntaxMacros BasicMacroExpansionContext.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/BasicMacroExpansionContext.swift:105:1: warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
103 |
104 | }
105 | extension BasicMacroExpansionContext: MacroExpansionContext {
| `- warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
106 | /// Generate a unique name for use in the macro.
107 | public func makeUniqueName(_ providedName: String) -> TokenSyntax {
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroExpansionContext.swift:132:15: note: 'location(of:at:filePathMode:)' declared here
74 | /// expansion context knows about.
75 | @_disfavoredOverload
76 | func location<Node: SyntaxProtocol>(
| `- note: requirement 'location(of:at:filePathMode:)' declared here
77 | of node: Node,
78 | at position: PositionInSyntaxNode,
:
130 | @_disfavoredOverload
131 | @available(*, deprecated, message: "Please use AbstractSourceLocation version")
132 | public func location<Node: SyntaxProtocol>(
| `- note: 'location(of:at:filePathMode:)' declared here
133 | of node: Node,
134 | at position: PositionInSyntaxNode,
[284/301] Compiling SwiftSyntaxMacros FunctionParameterUtils.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/BasicMacroExpansionContext.swift:105:1: warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
103 |
104 | }
105 | extension BasicMacroExpansionContext: MacroExpansionContext {
| `- warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
106 | /// Generate a unique name for use in the macro.
107 | public func makeUniqueName(_ providedName: String) -> TokenSyntax {
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroExpansionContext.swift:132:15: note: 'location(of:at:filePathMode:)' declared here
74 | /// expansion context knows about.
75 | @_disfavoredOverload
76 | func location<Node: SyntaxProtocol>(
| `- note: requirement 'location(of:at:filePathMode:)' declared here
77 | of node: Node,
78 | at position: PositionInSyntaxNode,
:
130 | @_disfavoredOverload
131 | @available(*, deprecated, message: "Please use AbstractSourceLocation version")
132 | public func location<Node: SyntaxProtocol>(
| `- note: 'location(of:at:filePathMode:)' declared here
133 | of node: Node,
134 | at position: PositionInSyntaxNode,
[285/301] Compiling _SwiftSyntaxTestSupport Syntax+Assertions.swift
/host/spi-builder-workspace/Sources/_SwiftSyntaxTestSupport/Syntax+Assertions.swift:129:8: warning: associated value 'invalidSubtree(tree:afterUTF8Offset:type:)' of 'Sendable'-conforming enum 'SubtreeError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
127 | public enum SubtreeError: Error, CustomStringConvertible {
128 | case invalidMarker(name: String)
129 | case invalidSubtree(tree: Syntax, afterUTF8Offset: Int, type: String)
| `- warning: associated value 'invalidSubtree(tree:afterUTF8Offset:type:)' of 'Sendable'-conforming enum 'SubtreeError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
130 |
131 | public var description: String {
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/_SwiftSyntaxTestSupport/Syntax+Assertions.swift:17:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
15 | //===----------------------------------------------------------------------===//
16 |
17 | import SwiftSyntax
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
18 | import XCTest
19 |
[286/301] Emitting module SwiftSyntaxMacros
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/BasicMacroExpansionContext.swift:105:1: warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
103 |
104 | }
105 | extension BasicMacroExpansionContext: MacroExpansionContext {
| `- warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
106 | /// Generate a unique name for use in the macro.
107 | public func makeUniqueName(_ providedName: String) -> TokenSyntax {
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroExpansionContext.swift:132:15: note: 'location(of:at:filePathMode:)' declared here
74 | /// expansion context knows about.
75 | @_disfavoredOverload
76 | func location<Node: SyntaxProtocol>(
| `- note: requirement 'location(of:at:filePathMode:)' declared here
77 | of node: Node,
78 | at position: PositionInSyntaxNode,
:
130 | @_disfavoredOverload
131 | @available(*, deprecated, message: "Please use AbstractSourceLocation version")
132 | public func location<Node: SyntaxProtocol>(
| `- note: 'location(of:at:filePathMode:)' declared here
133 | of node: Node,
134 | at position: PositionInSyntaxNode,
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:22:8: warning: associated value 'unknownMacro(name:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
20 |
21 | /// Indicates that an unknown macro was encountered during expansion.
22 | case unknownMacro(name: String, node: Syntax)
| `- warning: associated value 'unknownMacro(name:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
23 |
24 | /// Indicates that a macro evaluated as an expression by the given node
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
12 |
13 | import SwiftDiagnostics
14 | import SwiftSyntax
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
15 |
16 | /// Describes the kinds of errors that can occur within a macro system.
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:26:8: warning: associated value 'requiresExpressionMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
24 | /// Indicates that a macro evaluated as an expression by the given node
25 | /// is not an expression macro.
26 | case requiresExpressionMacro(macro: Macro.Type, node: Syntax)
| `- warning: associated value 'requiresExpressionMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
27 |
28 | /// Indicates that a macro evaluated as a code item by the given node
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:30:8: warning: associated value 'requiresCodeItemMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
28 | /// Indicates that a macro evaluated as a code item by the given node
29 | /// is not suitable for code items.
30 | case requiresCodeItemMacro(macro: Macro.Type, node: Syntax)
| `- warning: associated value 'requiresCodeItemMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
31 |
32 | /// Indicates that a macro produced diagnostics during evaluation. The
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:35:8: warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
33 | /// diagnostics might not specifically include errors, but will be reported
34 | /// nonetheless.
35 | case evaluationDiagnostics(node: Syntax, diagnostics: [Diagnostic])
| `- warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:35:8: warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
33 | /// diagnostics might not specifically include errors, but will be reported
34 | /// nonetheless.
35 | case evaluationDiagnostics(node: Syntax, diagnostics: [Diagnostic])
| `- warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftDiagnostics/Diagnostic.swift:15:15: note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
13 | import SwiftSyntax
14 |
15 | public struct Diagnostic: CustomDebugStringConvertible {
| `- note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
16 | /// The message that should be displayed to the user
17 | public let diagMessage: DiagnosticMessage
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:13:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import SwiftDiagnostics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
14 | import SwiftSyntax
15 |
[287/301] Compiling _SwiftSyntaxTestSupport SyntaxCollection+AtIndex.swift.swift
[288/301] Compiling _SwiftSyntaxTestSupport SyntaxProtocol+Initializer.swift
[289/302] Compiling SwiftSyntaxMacros PeerMacro.swift
[290/302] Compiling SwiftSyntaxMacros MacroReplacement.swift
[292/302] Compiling SwiftSyntaxMacros MacroSystem.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:22:8: warning: associated value 'unknownMacro(name:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
20 |
21 | /// Indicates that an unknown macro was encountered during expansion.
22 | case unknownMacro(name: String, node: Syntax)
| `- warning: associated value 'unknownMacro(name:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
23 |
24 | /// Indicates that a macro evaluated as an expression by the given node
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
12 |
13 | import SwiftDiagnostics
14 | import SwiftSyntax
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
15 |
16 | /// Describes the kinds of errors that can occur within a macro system.
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:26:8: warning: associated value 'requiresExpressionMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
24 | /// Indicates that a macro evaluated as an expression by the given node
25 | /// is not an expression macro.
26 | case requiresExpressionMacro(macro: Macro.Type, node: Syntax)
| `- warning: associated value 'requiresExpressionMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
27 |
28 | /// Indicates that a macro evaluated as a code item by the given node
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:30:8: warning: associated value 'requiresCodeItemMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
28 | /// Indicates that a macro evaluated as a code item by the given node
29 | /// is not suitable for code items.
30 | case requiresCodeItemMacro(macro: Macro.Type, node: Syntax)
| `- warning: associated value 'requiresCodeItemMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
31 |
32 | /// Indicates that a macro produced diagnostics during evaluation. The
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:35:8: warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
33 | /// diagnostics might not specifically include errors, but will be reported
34 | /// nonetheless.
35 | case evaluationDiagnostics(node: Syntax, diagnostics: [Diagnostic])
| `- warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:35:8: warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
33 | /// diagnostics might not specifically include errors, but will be reported
34 | /// nonetheless.
35 | case evaluationDiagnostics(node: Syntax, diagnostics: [Diagnostic])
| `- warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftDiagnostics/Diagnostic.swift:15:15: note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
13 | import SwiftSyntax
14 |
15 | public struct Diagnostic: CustomDebugStringConvertible {
| `- note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
16 | /// The message that should be displayed to the user
17 | public let diagMessage: DiagnosticMessage
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:13:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import SwiftDiagnostics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
14 | import SwiftSyntax
15 |
[293/302] Compiling SwiftSyntaxMacros Syntax+MacroEvaluation.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:22:8: warning: associated value 'unknownMacro(name:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
20 |
21 | /// Indicates that an unknown macro was encountered during expansion.
22 | case unknownMacro(name: String, node: Syntax)
| `- warning: associated value 'unknownMacro(name:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
23 |
24 | /// Indicates that a macro evaluated as an expression by the given node
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
12 |
13 | import SwiftDiagnostics
14 | import SwiftSyntax
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
15 |
16 | /// Describes the kinds of errors that can occur within a macro system.
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:26:8: warning: associated value 'requiresExpressionMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
24 | /// Indicates that a macro evaluated as an expression by the given node
25 | /// is not an expression macro.
26 | case requiresExpressionMacro(macro: Macro.Type, node: Syntax)
| `- warning: associated value 'requiresExpressionMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
27 |
28 | /// Indicates that a macro evaluated as a code item by the given node
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:30:8: warning: associated value 'requiresCodeItemMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
28 | /// Indicates that a macro evaluated as a code item by the given node
29 | /// is not suitable for code items.
30 | case requiresCodeItemMacro(macro: Macro.Type, node: Syntax)
| `- warning: associated value 'requiresCodeItemMacro(macro:node:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
31 |
32 | /// Indicates that a macro produced diagnostics during evaluation. The
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:35:8: warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
33 | /// diagnostics might not specifically include errors, but will be reported
34 | /// nonetheless.
35 | case evaluationDiagnostics(node: Syntax, diagnostics: [Diagnostic])
| `- warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
52 | /// Each node has accessors for its known children, and allows efficient
53 | /// iteration over the children through its `children` property.
54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
| `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
55 | let data: SyntaxData
56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:35:8: warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
33 | /// diagnostics might not specifically include errors, but will be reported
34 | /// nonetheless.
35 | case evaluationDiagnostics(node: Syntax, diagnostics: [Diagnostic])
| `- warning: associated value 'evaluationDiagnostics(node:diagnostics:)' of 'Sendable'-conforming enum 'MacroSystemError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftDiagnostics/Diagnostic.swift:15:15: note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
13 | import SwiftSyntax
14 |
15 | public struct Diagnostic: CustomDebugStringConvertible {
| `- note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
16 | /// The message that should be displayed to the user
17 | public let diagMessage: DiagnosticMessage
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroSystem.swift:13:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
11 | //===----------------------------------------------------------------------===//
12 |
13 | import SwiftDiagnostics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
14 | import SwiftSyntax
15 |
[294/303] Wrapping AST for SwiftSyntaxMacros for debugging
[295/303] Write Objects.LinkFileList
[296/309] Archiving libSwiftSyntaxMacros.a
[298/309] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[299/309] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[300/309] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[301/309] Emitting module SwiftCompilerPluginMessageHandling
/host/spi-builder-workspace/Sources/SwiftCompilerPluginMessageHandling/PluginMacroExpansionContext.swift:212:1: warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
210 | }
211 |
212 | extension PluginMacroExpansionContext: MacroExpansionContext {
| `- warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
213 | /// Generate a unique name for use in the macro.
214 | public func createUniqueName(_ providedName: String) -> TokenSyntax {
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroExpansionContext.swift:132:15: note: 'location(of:at:filePathMode:)' declared here
74 | /// expansion context knows about.
75 | @_disfavoredOverload
76 | func location<Node: SyntaxProtocol>(
| `- note: requirement 'location(of:at:filePathMode:)' declared here
77 | of node: Node,
78 | at position: PositionInSyntaxNode,
:
130 | @_disfavoredOverload
131 | @available(*, deprecated, message: "Please use AbstractSourceLocation version")
132 | public func location<Node: SyntaxProtocol>(
| `- note: 'location(of:at:filePathMode:)' declared here
133 | of node: Node,
134 | at position: PositionInSyntaxNode,
[302/309] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
/host/spi-builder-workspace/Sources/SwiftCompilerPluginMessageHandling/PluginMacroExpansionContext.swift:212:1: warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
210 | }
211 |
212 | extension PluginMacroExpansionContext: MacroExpansionContext {
| `- warning: deprecated default implementation is used to satisfy instance method 'location(of:at:filePathMode:)' required by protocol 'MacroExpansionContext': Please use AbstractSourceLocation version
213 | /// Generate a unique name for use in the macro.
214 | public func createUniqueName(_ providedName: String) -> TokenSyntax {
/host/spi-builder-workspace/Sources/SwiftSyntaxMacros/MacroExpansionContext.swift:132:15: note: 'location(of:at:filePathMode:)' declared here
74 | /// expansion context knows about.
75 | @_disfavoredOverload
76 | func location<Node: SyntaxProtocol>(
| `- note: requirement 'location(of:at:filePathMode:)' declared here
77 | of node: Node,
78 | at position: PositionInSyntaxNode,
:
130 | @_disfavoredOverload
131 | @available(*, deprecated, message: "Please use AbstractSourceLocation version")
132 | public func location<Node: SyntaxProtocol>(
| `- note: 'location(of:at:filePathMode:)' declared here
133 | of node: Node,
134 | at position: PositionInSyntaxNode,
[303/309] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[304/310] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[305/310] Write Objects.LinkFileList
[306/312] Archiving libSwiftCompilerPluginMessageHandling.a
[308/312] Emitting module SwiftCompilerPlugin
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftCompilerPlugin' may lead to instability during execution
14 |
15 | import SwiftSyntaxMacros
16 | @_implementationOnly import SwiftCompilerPluginMessageHandling
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftCompilerPlugin' may lead to instability during execution
17 |
18 | @_implementationOnly import Foundation
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:18:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftCompilerPlugin' may lead to instability during execution
16 | @_implementationOnly import SwiftCompilerPluginMessageHandling
17 |
18 | @_implementationOnly import Foundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftCompilerPlugin' may lead to instability during execution
19 | #if os(Windows)
20 | @_implementationOnly import ucrt
[309/312] Compiling SwiftCompilerPlugin CompilerPlugin.swift
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftCompilerPlugin' may lead to instability during execution
14 |
15 | import SwiftSyntaxMacros
16 | @_implementationOnly import SwiftCompilerPluginMessageHandling
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftCompilerPlugin' may lead to instability during execution
17 |
18 | @_implementationOnly import Foundation
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:18:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftCompilerPlugin' may lead to instability during execution
16 | @_implementationOnly import SwiftCompilerPluginMessageHandling
17 |
18 | @_implementationOnly import Foundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftCompilerPlugin' may lead to instability during execution
19 | #if os(Windows)
20 | @_implementationOnly import ucrt
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:103:30: warning: reference to var 'stdin' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
101 | // Duplicate the `stdin` file descriptor, which we will then use for
102 | // receiving messages from the plugin host.
103 | let inputFD = dup(fileno(stdin))
| `- warning: reference to var 'stdin' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
104 | guard inputFD >= 0 else {
105 | internalError("Could not duplicate `stdin`: \(describe(errno: errno)).")
SwiftGlibc.stdin:1:12: note: var declared here
1 | public var stdin: UnsafeMutablePointer<FILE>!
| `- note: var declared here
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:111:24: warning: reference to var 'stdin' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
109 | // `stdin` so that attempts by the plugin to read console input (which
110 | // are usually a mistake) return errors instead of blocking.
111 | guard close(fileno(stdin)) >= 0 else {
| `- warning: reference to var 'stdin' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
112 | internalError("Could not close `stdin`: \(describe(errno: errno)).")
113 | }
SwiftGlibc.stdin:1:12: note: var declared here
1 | public var stdin: UnsafeMutablePointer<FILE>!
| `- note: var declared here
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:117:31: warning: reference to var 'stdout' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
115 | // Duplicate the `stdout` file descriptor, which we will then use for
116 | // sending messages to the plugin host.
117 | let outputFD = dup(fileno(stdout))
| `- warning: reference to var 'stdout' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
118 | guard outputFD >= 0 else {
119 | internalError("Could not dup `stdout`: \(describe(errno: errno)).")
SwiftGlibc.stdout:1:12: note: var declared here
1 | public var stdout: UnsafeMutablePointer<FILE>!
| `- note: var declared here
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:124:23: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
122 | // Having duplicated the original standard-output descriptor, redirect
123 | // `stdout` to `stderr` so that all free-form text output goes there.
124 | guard dup2(fileno(stderr), fileno(stdout)) >= 0 else {
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
125 | internalError("Could not dup2 `stdout` to `stderr`: \(describe(errno: errno)).")
126 | }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
| `- note: var declared here
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:124:39: warning: reference to var 'stdout' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
122 | // Having duplicated the original standard-output descriptor, redirect
123 | // `stdout` to `stderr` so that all free-form text output goes there.
124 | guard dup2(fileno(stderr), fileno(stdout)) >= 0 else {
| `- warning: reference to var 'stdout' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
125 | internalError("Could not dup2 `stdout` to `stderr`: \(describe(errno: errno)).")
126 | }
SwiftGlibc.stdout:1:12: note: var declared here
1 | public var stdout: UnsafeMutablePointer<FILE>!
| `- note: var declared here
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:136:13: warning: reference to var 'stdout' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
134 | setvbuf(stdout, nil, _IONBF, 0)
135 | #else
136 | setvbuf(stdout, nil, _IOLBF, 0)
| `- warning: reference to var 'stdout' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
137 | #endif
138 |
SwiftGlibc.stdout:1:12: note: var declared here
1 | public var stdout: UnsafeMutablePointer<FILE>!
| `- note: var declared here
/host/spi-builder-workspace/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:160:43: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
158 | // Private function to report internal errors and then exit.
159 | fileprivate static func internalError(_ message: String) -> Never {
160 | fputs("Internal Error: \(message)\n", stderr)
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
161 | exit(1)
162 | }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
| `- note: var declared here
[310/313] Wrapping AST for SwiftCompilerPlugin for debugging
[311/313] Write Objects.LinkFileList
[312/313] Archiving libSwiftCompilerPlugin.a
Build complete! (171.70s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.2",
"upper_bound" : "1.3.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser.git"
}
],
"manifest_display_name" : "SwiftSyntax",
"name" : "SwiftSyntax",
"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"
},
{
"name" : "maccatalyst",
"version" : "13.0"
}
],
"products" : [
{
"name" : "IDEUtils",
"targets" : [
"IDEUtils"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftDiagnostics",
"targets" : [
"SwiftDiagnostics"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftOperators",
"targets" : [
"SwiftOperators"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftParser",
"targets" : [
"SwiftParser"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftParserDiagnostics",
"targets" : [
"SwiftParserDiagnostics"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftSyntax",
"targets" : [
"SwiftSyntax"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftSyntaxParser",
"targets" : [
"SwiftSyntaxParser"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftSyntaxBuilder",
"targets" : [
"SwiftSyntaxBuilder"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftSyntaxMacros",
"targets" : [
"SwiftSyntaxMacros"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftCompilerPlugin",
"targets" : [
"SwiftCompilerPlugin"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftCompilerPluginMessageHandling",
"targets" : [
"SwiftCompilerPluginMessageHandling"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SwiftRefactor",
"targets" : [
"SwiftRefactor"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "swift-parser-cli",
"targets" : [
"swift-parser-cli"
],
"type" : {
"executable" : null
}
},
{
"name" : "lit-test-helper",
"targets" : [
"lit-test-helper"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "swift_parser_cli",
"module_type" : "SwiftTarget",
"name" : "swift-parser-cli",
"path" : "Sources/swift-parser-cli",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"swift-parser-cli"
],
"sources" : [
"TerminalUtils.swift",
"swift-parser-cli.swift"
],
"target_dependencies" : [
"_InstructionCounter",
"SwiftDiagnostics",
"SwiftSyntax",
"SwiftParser",
"SwiftParserDiagnostics",
"SwiftOperators"
],
"type" : "executable"
},
{
"c99name" : "lit_test_helper",
"module_type" : "SwiftTarget",
"name" : "lit-test-helper",
"path" : "Sources/lit-test-helper",
"product_memberships" : [
"lit-test-helper"
],
"sources" : [
"ClassifiedSyntaxTreePrinter.swift",
"CommandLineArguments.swift",
"main.swift"
],
"target_dependencies" : [
"IDEUtils",
"SwiftSyntax",
"SwiftSyntaxParser"
],
"type" : "executable"
},
{
"c99name" : "_SwiftSyntaxTestSupport",
"module_type" : "SwiftTarget",
"name" : "_SwiftSyntaxTestSupport",
"path" : "Sources/_SwiftSyntaxTestSupport",
"sources" : [
"AssertEqualWithDiff.swift",
"LocationMarkers.swift",
"String+TrimmingTrailingWhitespace.swift",
"Syntax+Assertions.swift",
"SyntaxCollection+AtIndex.swift.swift",
"SyntaxComparison.swift",
"SyntaxProtocol+Initializer.swift",
"TestUtils.swift"
],
"target_dependencies" : [
"SwiftBasicFormat",
"SwiftSyntax",
"SwiftSyntaxBuilder"
],
"type" : "library"
},
{
"c99name" : "_InstructionCounter",
"module_type" : "ClangTarget",
"name" : "_InstructionCounter",
"path" : "Sources/_InstructionCounter",
"product_memberships" : [
"swift-parser-cli"
],
"sources" : [
"src/InstructionsExecuted.c"
],
"type" : "library"
},
{
"c99name" : "SwiftSyntaxTest",
"module_type" : "SwiftTarget",
"name" : "SwiftSyntaxTest",
"path" : "Tests/SwiftSyntaxTest",
"sources" : [
"BumpPtrAllocatorTests.swift",
"CustomReflectableTests.swift",
"MemoryLayoutTest.swift",
"MultithreadingTests.swift",
"RawSyntaxTests.swift",
"SequentialToConcurrentEditTranslationTests.swift",
"SourceLocationConverterTests.swift",
"SyntaxChildrenTests.swift",
"SyntaxCollectionsTests.swift",
"SyntaxCreationTests.swift",
"SyntaxTests.swift",
"SyntaxTextTests.swift",
"SyntaxTreeModifierTests.swift",
"TriviaTests.swift",
"VisitorTests.swift"
],
"target_dependencies" : [
"SwiftSyntax",
"_SwiftSyntaxTestSupport"
],
"type" : "test"
},
{
"c99name" : "SwiftSyntaxParserTest",
"module_type" : "SwiftTarget",
"name" : "SwiftSyntaxParserTest",
"path" : "Tests/SwiftSyntaxParserTest",
"sources" : [
"AbsolutePositionTests.swift",
"IncrementalParsingTests.swift",
"ParseFileTests.swift",
"SyntaxComparisonTests.swift",
"SyntaxTests.swift",
"SyntaxVisitorTests.swift",
"TokenTest.swift"
],
"target_dependencies" : [
"SwiftSyntaxParser",
"_SwiftSyntaxTestSupport"
],
"type" : "test"
},
{
"c99name" : "SwiftSyntaxParser",
"module_type" : "SwiftTarget",
"name" : "SwiftSyntaxParser",
"path" : "Sources/SwiftSyntaxParser",
"product_memberships" : [
"SwiftSyntaxParser",
"lit-test-helper"
],
"sources" : [
"Diagnostic.swift",
"SyntaxParser.swift"
],
"target_dependencies" : [
"SwiftSyntax",
"SwiftParser"
],
"type" : "library"
},
{
"c99name" : "SwiftSyntaxMacrosTest",
"module_type" : "SwiftTarget",
"name" : "SwiftSyntaxMacrosTest",
"path" : "Tests/SwiftSyntaxMacrosTest",
"sources" : [
"MacroReplacementTests.swift",
"MacroSystemTests.swift"
],
"target_dependencies" : [
"SwiftDiagnostics",
"SwiftOperators",
"SwiftParser",
"_SwiftSyntaxTestSupport",
"SwiftSyntaxBuilder",
"SwiftSyntaxMacros"
],
"type" : "test"
},
{
"c99name" : "SwiftSyntaxMacros",
"module_type" : "SwiftTarget",
"name" : "SwiftSyntaxMacros",
"path" : "Sources/SwiftSyntaxMacros",
"product_memberships" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling"
],
"sources" : [
"AbstractSourceLocation.swift",
"BasicMacroExpansionContext.swift",
"FunctionParameterUtils.swift",
"MacroExpansionContext.swift",
"MacroProtocols/AccessorMacro.swift",
"MacroProtocols/AttachedMacro.swift",
"MacroProtocols/CodeItemMacro.swift",
"MacroProtocols/ConformanceMacro.swift",
"MacroProtocols/DeclarationMacro.swift",
"MacroProtocols/ExpressionMacro.swift",
"MacroProtocols/FreestandingMacro.swift",
"MacroProtocols/Macro.swift",
"MacroProtocols/MemberAttributeMacro.swift",
"MacroProtocols/MemberMacro.swift",
"MacroProtocols/PeerMacro.swift",
"MacroReplacement.swift",
"MacroSystem.swift",
"Syntax+MacroEvaluation.swift"
],
"target_dependencies" : [
"SwiftSyntax",
"SwiftSyntaxBuilder",
"SwiftParser",
"SwiftDiagnostics"
],
"type" : "library"
},
{
"c99name" : "SwiftSyntaxBuilderTest",
"module_type" : "SwiftTarget",
"name" : "SwiftSyntaxBuilderTest",
"path" : "Tests/SwiftSyntaxBuilderTest",
"sources" : [
"ArrayExprTests.swift",
"Assertions.swift",
"BooleanLiteralTests.swift",
"BreakStmtSyntaxTests.swift",
"ClassDeclSyntaxTests.swift",
"ClosureExprTests.swift",
"CollectionNodeFlatteningTests.swift",
"CustomAttributeTests.swift",
"DictionaryExprTests.swift",
"DoStmtTests.swift",
"EnumCaseElementTests.swift",
"ExprListTests.swift",
"ExtensionDeclTests.swift",
"FloatLiteralTests.swift",
"FunctionTests.swift",
"IfConfigDeclSyntaxTests.swift",
"IfStmtTests.swift",
"ImportTests.swift",
"InitializerDeclTests.swift",
"IntegerLiteralTests.swift",
"ProtocolDeclTests.swift",
"ReturnStmsTests.swift",
"SourceFileTests.swift",
"StringInterpolationTests.swift",
"StringLiteralTests.swift",
"StructTests.swift",
"SwitchCaseLabelSyntaxTests.swift",
"SwitchTests.swift",
"TernaryExprTests.swift",
"TriviaTests.swift",
"TupleTests.swift",
"VariableTests.swift"
],
"target_dependencies" : [
"_SwiftSyntaxTestSupport",
"SwiftSyntaxBuilder"
],
"type" : "test"
},
{
"c99name" : "SwiftSyntaxBuilder",
"module_type" : "SwiftTarget",
"name" : "SwiftSyntaxBuilder",
"path" : "Sources/SwiftSyntaxBuilder",
"product_memberships" : [
"SwiftSyntaxBuilder",
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling"
],
"sources" : [
"ConvenienceInitializers.swift",
"Indenter.swift",
"ResultBuilderExtensions.swift",
"Syntax+StringInterpolation.swift",
"SyntaxNodeWithBody.swift",
"ValidatingSyntaxNodes.swift",
"WithTrailingCommaSyntax+EnsuringTrailingComma.swift",
"generated/BuildableCollectionNodes.swift",
"generated/BuildableNodes.swift",
"generated/ResultBuilders.swift",
"generated/SyntaxExpressibleByStringInterpolationConformances.swift"
],
"target_dependencies" : [
"SwiftBasicFormat",
"SwiftSyntax",
"SwiftParser",
"SwiftParserDiagnostics"
],
"type" : "library"
},
{
"c99name" : "SwiftSyntax",
"module_type" : "SwiftTarget",
"name" : "SwiftSyntax",
"path" : "Sources/SwiftSyntax",
"product_memberships" : [
"IDEUtils",
"SwiftDiagnostics",
"SwiftOperators",
"SwiftParser",
"SwiftParserDiagnostics",
"SwiftSyntax",
"SwiftSyntaxParser",
"SwiftSyntaxBuilder",
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling",
"SwiftRefactor",
"swift-parser-cli",
"lit-test-helper"
],
"sources" : [
"AbsolutePosition.swift",
"Assert.swift",
"BumpPtrAllocator.swift",
"CommonAncestor.swift",
"IncrementalParseTransition.swift",
"MemoryLayout.swift",
"Raw/RawSyntax.swift",
"Raw/RawSyntaxLayoutView.swift",
"Raw/RawSyntaxNodeProtocol.swift",
"Raw/RawSyntaxTokenView.swift",
"SourceLength.swift",
"SourceLocation.swift",
"SourcePresence.swift",
"Syntax.swift",
"SyntaxArena.swift",
"SyntaxChildren.swift",
"SyntaxData.swift",
"SyntaxText.swift",
"SyntaxTreeViewMode.swift",
"TokenDiagnostic.swift",
"TokenSyntax.swift",
"Utils.swift",
"generated/Keyword.swift",
"generated/Misc.swift",
"generated/SyntaxAnyVisitor.swift",
"generated/SyntaxBaseNodes.swift",
"generated/SyntaxCollections.swift",
"generated/SyntaxEnum.swift",
"generated/SyntaxKind.swift",
"generated/SyntaxRewriter.swift",
"generated/SyntaxTraits.swift",
"generated/SyntaxTransform.swift",
"generated/SyntaxVisitor.swift",
"generated/TokenKind.swift",
"generated/Tokens.swift",
"generated/Trivia.swift",
"generated/raw/RawSyntaxNodes.swift",
"generated/raw/RawSyntaxValidation.swift",
"generated/syntaxNodes/SyntaxDeclNodes.swift",
"generated/syntaxNodes/SyntaxExprNodes.swift",
"generated/syntaxNodes/SyntaxNodes.swift",
"generated/syntaxNodes/SyntaxPatternNodes.swift",
"generated/syntaxNodes/SyntaxStmtNodes.swift",
"generated/syntaxNodes/SyntaxTypeNodes.swift"
],
"type" : "library"
},
{
"c99name" : "SwiftRefactorTest",
"module_type" : "SwiftTarget",
"name" : "SwiftRefactorTest",
"path" : "Tests/SwiftRefactorTest",
"sources" : [
"FormatRawStringLiteral.swift",
"IntegerLiteralUtilities.swift",
"MigrateToNewIfLetSyntax.swift",
"OpaqueParameterToGeneric.swift",
"ReformatIntegerLiteral.swift"
],
"target_dependencies" : [
"SwiftRefactor",
"SwiftSyntaxBuilder",
"_SwiftSyntaxTestSupport"
],
"type" : "test"
},
{
"c99name" : "SwiftRefactor",
"module_type" : "SwiftTarget",
"name" : "SwiftRefactor",
"path" : "Sources/SwiftRefactor",
"product_memberships" : [
"SwiftRefactor"
],
"sources" : [
"AddSeparatorsToIntegerLiteral.swift",
"FormatRawStringLiteral.swift",
"IntegerLiteralUtilities.swift",
"MigrateToNewIfLetSyntax.swift",
"OpaqueParameterToGeneric.swift",
"RefactoringProvider.swift",
"RemoveSeparatorsFromIntegerLiteral.swift"
],
"target_dependencies" : [
"SwiftSyntax",
"SwiftParser"
],
"type" : "library"
},
{
"c99name" : "SwiftParserTest",
"module_type" : "SwiftTarget",
"name" : "SwiftParserTest",
"path" : "Tests/SwiftParserTest",
"sources" : [
"AbsolutePositionTests.swift",
"Assertions.swift",
"AttributeTests.swift",
"AvailabilityTests.swift",
"DeclarationTests.swift",
"DirectiveTests.swift",
"ExpressionTests.swift",
"ExpressionTypeTests.swift",
"LexerTests.swift",
"LinkageTests.swift",
"Parser+EntryTests.swift",
"ParserTests.swift",
"RegexLiteralTests.swift",
"StatementTests.swift",
"SyntaxTransformVisitorTest.swift",
"TriviaParserTests.swift",
"TypeCompositionTests.swift",
"TypeMemberTests.swift",
"TypeMetatypeTests.swift",
"TypeTests.swift",
"Utils.swift",
"VariadicGenericsTests.swift",
"translated/ActorTests.swift",
"translated/AlwaysEmitConformanceMetadataAttrTests.swift",
"translated/AsyncSyntaxTests.swift",
"translated/AsyncTests.swift",
"translated/AvailabilityQueryTests.swift",
"translated/AvailabilityQueryUnavailabilityTests.swift",
"translated/BorrowExprTests.swift",
"translated/BraceRecoveryEofTests.swift",
"translated/BuiltinBridgeObjectTests.swift",
"translated/BuiltinWordTests.swift",
"translated/ConflictMarkersTests.swift",
"translated/ConsecutiveStatementsTests.swift",
"translated/DebuggerTests.swift",
"translated/DelayedExtensionTests.swift",
"translated/DeprecatedWhereTests.swift",
"translated/DiagnoseAvailabilityTests.swift",
"translated/DiagnoseAvailabilityWindowsTests.swift",
"translated/DiagnoseDynamicReplacementTests.swift",
"translated/DiagnoseInitializerAsTypedPatternTests.swift",
"translated/DiagnosticMissingFuncKeywordTests.swift",
"translated/DollarIdentifierTests.swift",
"translated/EffectfulPropertiesTests.swift",
"translated/EnumElementPatternSwift4Tests.swift",
"translated/EnumTests.swift",
"translated/ErrorsTests.swift",
"translated/EscapedIdentifiersTests.swift",
"translated/ForeachAsyncTests.swift",
"translated/ForeachTests.swift",
"translated/ForwardSlashRegexSkippingAllowedTests.swift",
"translated/ForwardSlashRegexSkippingInvalidTests.swift",
"translated/ForwardSlashRegexSkippingTests.swift",
"translated/ForwardSlashRegexTests.swift",
"translated/GenericDisambiguationTests.swift",
"translated/GuardTests.swift",
"translated/GuardTopLevelTests.swift",
"translated/HashbangLibraryTests.swift",
"translated/HashbangMainTests.swift",
"translated/IdentifiersTests.swift",
"translated/IfconfigExprTests.swift",
"translated/ImplicitGetterIncompleteTests.swift",
"translated/InitDeinitTests.swift",
"translated/InvalidIfExprTests.swift",
"translated/InvalidStringInterpolationProtocolTests.swift",
"translated/InvalidTests.swift",
"translated/MatchingPatternsTests.swift",
"translated/MetatypeObjectConversionTests.swift",
"translated/MoveExprTests.swift",
"translated/MultilineErrorsTests.swift",
"translated/MultilinePoundDiagnosticArgRdar41154797Tests.swift",
"translated/MultilineStringTests.swift",
"translated/NoimplicitcopyAttrTests.swift",
"translated/NumberIdentifierErrorsTests.swift",
"translated/ObjcEnumTests.swift",
"translated/ObjectLiteralsTests.swift",
"translated/OperatorDeclDesignatedTypesTests.swift",
"translated/OperatorDeclTests.swift",
"translated/OperatorsTests.swift",
"translated/OptionalChainLvaluesTests.swift",
"translated/OptionalLvaluesTests.swift",
"translated/OptionalTests.swift",
"translated/OriginalDefinedInAttrTests.swift",
"translated/PatternWithoutVariablesScriptTests.swift",
"translated/PatternWithoutVariablesTests.swift",
"translated/PlaygroundLvaluesTests.swift",
"translated/PoundAssertTests.swift",
"translated/PrefixSlashTests.swift",
"translated/RawStringErrorsTests.swift",
"translated/RawStringTests.swift",
"translated/RecoveryLibraryTests.swift",
"translated/RecoveryTests.swift",
"translated/RegexParseEndOfBufferTests.swift",
"translated/RegexParseErrorTests.swift",
"translated/RegexTests.swift",
"translated/ResultBuilderTests.swift",
"translated/SelfRebindingTests.swift",
"translated/SemicolonTests.swift",
"translated/StringLiteralEofTests.swift",
"translated/SubscriptingTests.swift",
"translated/SuperTests.swift",
"translated/SwitchIncompleteTests.swift",
"translated/SwitchTests.swift",
"translated/ToplevelLibraryTests.swift",
"translated/TrailingClosuresTests.swift",
"translated/TrailingSemiTests.swift",
"translated/TryTests.swift",
"translated/TypeExprTests.swift",
"translated/TypealiasTests.swift",
"translated/UnclosedStringInterpolationTests.swift"
],
"target_dependencies" : [
"SwiftDiagnostics",
"SwiftOperators",
"SwiftParser",
"_SwiftSyntaxTestSupport",
"SwiftSyntaxBuilder"
],
"type" : "test"
},
{
"c99name" : "SwiftParserDiagnosticsTest",
"module_type" : "SwiftTarget",
"name" : "SwiftParserDiagnosticsTest",
"path" : "Tests/SwiftParserDiagnosticsTest",
"sources" : [
"DiagnosticInfrastructureTests.swift"
],
"target_dependencies" : [
"SwiftDiagnostics",
"SwiftParserDiagnostics"
],
"type" : "test"
},
{
"c99name" : "SwiftParserDiagnostics",
"module_type" : "SwiftTarget",
"name" : "SwiftParserDiagnostics",
"path" : "Sources/SwiftParserDiagnostics",
"product_memberships" : [
"SwiftParserDiagnostics",
"SwiftSyntaxBuilder",
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling",
"swift-parser-cli"
],
"sources" : [
"DiagnosticExtensions.swift",
"LexerDiagnosticMessages.swift",
"MissingNodesError.swift",
"MissingTokenError.swift",
"MultiLineStringLiteralDiagnosticsGenerator.swift",
"ParseDiagnosticsGenerator.swift",
"ParserDiagnosticMessages.swift",
"PresenceUtils.swift",
"SyntaxExtensions.swift",
"Utils.swift"
],
"target_dependencies" : [
"SwiftBasicFormat",
"SwiftDiagnostics",
"SwiftParser",
"SwiftSyntax"
],
"type" : "library"
},
{
"c99name" : "SwiftParser",
"module_type" : "SwiftTarget",
"name" : "SwiftParser",
"path" : "Sources/SwiftParser",
"product_memberships" : [
"SwiftOperators",
"SwiftParser",
"SwiftParserDiagnostics",
"SwiftSyntaxParser",
"SwiftSyntaxBuilder",
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling",
"SwiftRefactor",
"swift-parser-cli",
"lit-test-helper"
],
"sources" : [
"Attributes.swift",
"Availability.swift",
"CharacterInfo.swift",
"Declarations.swift",
"Directives.swift",
"Expressions.swift",
"Lexer/Cursor.swift",
"Lexer/Lexeme.swift",
"Lexer/LexemeSequence.swift",
"Lexer/Lexer.swift",
"Lexer/RegexLiteralLexer.swift",
"Lexer/UnicodeScalarExtensions.swift",
"Lookahead.swift",
"LoopProgressCondition.swift",
"Modifiers.swift",
"Names.swift",
"Nominals.swift",
"Parameters.swift",
"Parser.swift",
"Patterns.swift",
"Recovery.swift",
"Specifiers.swift",
"Statements.swift",
"StringLiterals.swift",
"SyntaxUtils.swift",
"TokenConsumer.swift",
"TokenPrecedence.swift",
"TokenSpec.swift",
"TokenSpecSet.swift",
"TopLevel.swift",
"TriviaParser.swift",
"Types.swift",
"generated/DeclarationModifier.swift",
"generated/Parser+Entry.swift",
"generated/TokenSpecStaticMembers.swift",
"generated/TypeAttribute.swift"
],
"target_dependencies" : [
"SwiftSyntax"
],
"type" : "library"
},
{
"c99name" : "SwiftOperatorsTest",
"module_type" : "SwiftTarget",
"name" : "SwiftOperatorsTest",
"path" : "Tests/SwiftOperatorsTest",
"sources" : [
"OperatorTableTests.swift",
"SyntaxSynthesisTests.swift"
],
"target_dependencies" : [
"SwiftOperators",
"_SwiftSyntaxTestSupport",
"SwiftParser"
],
"type" : "test"
},
{
"c99name" : "SwiftOperators",
"module_type" : "SwiftTarget",
"name" : "SwiftOperators",
"path" : "Sources/SwiftOperators",
"product_memberships" : [
"SwiftOperators",
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling",
"swift-parser-cli"
],
"sources" : [
"Operator.swift",
"OperatorError+Diagnostics.swift",
"OperatorError.swift",
"OperatorTable+Defaults.swift",
"OperatorTable+Folding.swift",
"OperatorTable+Semantics.swift",
"OperatorTable.swift",
"PrecedenceGraph.swift",
"PrecedenceGroup.swift",
"SyntaxSynthesis.swift"
],
"target_dependencies" : [
"SwiftSyntax",
"SwiftParser",
"SwiftDiagnostics"
],
"type" : "library"
},
{
"c99name" : "SwiftDiagnosticsTest",
"module_type" : "SwiftTarget",
"name" : "SwiftDiagnosticsTest",
"path" : "Tests/SwiftDiagnosticsTest",
"sources" : [
"DiagnosticsFormatterTests.swift",
"GroupDiagnosticsFormatterTests.swift"
],
"target_dependencies" : [
"_SwiftSyntaxTestSupport",
"SwiftDiagnostics",
"SwiftParser",
"SwiftParserDiagnostics"
],
"type" : "test"
},
{
"c99name" : "SwiftDiagnostics",
"module_type" : "SwiftTarget",
"name" : "SwiftDiagnostics",
"path" : "Sources/SwiftDiagnostics",
"product_memberships" : [
"SwiftDiagnostics",
"SwiftOperators",
"SwiftParserDiagnostics",
"SwiftSyntaxBuilder",
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling",
"swift-parser-cli"
],
"sources" : [
"Diagnostic.swift",
"DiagnosticsFormatter.swift",
"FixIt.swift",
"GroupedDiagnostics.swift",
"Message.swift",
"Note.swift"
],
"target_dependencies" : [
"SwiftSyntax"
],
"type" : "library"
},
{
"c99name" : "SwiftCompilerPluginTest",
"module_type" : "SwiftTarget",
"name" : "SwiftCompilerPluginTest",
"path" : "Tests/SwiftCompilerPluginTest",
"sources" : [
"CompilerPluginTests.swift"
],
"target_dependencies" : [
"SwiftCompilerPlugin"
],
"type" : "test"
},
{
"c99name" : "SwiftCompilerPluginMessageHandling",
"module_type" : "SwiftTarget",
"name" : "SwiftCompilerPluginMessageHandling",
"path" : "Sources/SwiftCompilerPluginMessageHandling",
"product_memberships" : [
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling"
],
"sources" : [
"CompilerPluginMessageHandler.swift",
"Diagnostics.swift",
"Macros.swift",
"PluginMacroExpansionContext.swift",
"PluginMessages.swift"
],
"target_dependencies" : [
"SwiftSyntax",
"SwiftParser",
"SwiftDiagnostics",
"SwiftSyntaxMacros",
"SwiftOperators"
],
"type" : "library"
},
{
"c99name" : "SwiftCompilerPlugin",
"module_type" : "SwiftTarget",
"name" : "SwiftCompilerPlugin",
"path" : "Sources/SwiftCompilerPlugin",
"product_memberships" : [
"SwiftCompilerPlugin"
],
"sources" : [
"CompilerPlugin.swift"
],
"target_dependencies" : [
"SwiftCompilerPluginMessageHandling",
"SwiftSyntaxMacros"
],
"type" : "library"
},
{
"c99name" : "SwiftBasicFormat",
"module_type" : "SwiftTarget",
"name" : "SwiftBasicFormat",
"path" : "Sources/SwiftBasicFormat",
"product_memberships" : [
"SwiftParserDiagnostics",
"SwiftSyntaxBuilder",
"SwiftSyntaxMacros",
"SwiftCompilerPlugin",
"SwiftCompilerPluginMessageHandling",
"swift-parser-cli"
],
"sources" : [
"SyntaxProtocol+Formatted.swift",
"Trivia+Indented.swift",
"generated/BasicFormat.swift"
],
"target_dependencies" : [
"SwiftSyntax"
],
"type" : "library"
},
{
"c99name" : "PerformanceTest",
"module_type" : "SwiftTarget",
"name" : "PerformanceTest",
"path" : "Tests/PerformanceTest",
"sources" : [
"ParsingPerformanceTests.swift",
"SyntaxClassifierPerformanceTests.swift",
"VisitorPerformanceTests.swift"
],
"target_dependencies" : [
"IDEUtils",
"SwiftSyntax",
"SwiftSyntaxParser",
"SwiftParser"
],
"type" : "test"
},
{
"c99name" : "IDEUtilsTest",
"module_type" : "SwiftTarget",
"name" : "IDEUtilsTest",
"path" : "Tests/IDEUtilsTest",
"sources" : [
"ClassificationTests.swift"
],
"target_dependencies" : [
"_SwiftSyntaxTestSupport",
"SwiftParser",
"SwiftSyntax",
"IDEUtils"
],
"type" : "test"
},
{
"c99name" : "IDEUtils",
"module_type" : "SwiftTarget",
"name" : "IDEUtils",
"path" : "Sources/IDEUtils",
"product_memberships" : [
"IDEUtils",
"lit-test-helper"
],
"sources" : [
"Syntax+Classifications.swift",
"SyntaxClassifier.swift",
"generated/SyntaxClassification.swift"
],
"target_dependencies" : [
"SwiftSyntax"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.