The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SyntaxKit, reference 0.0.4 (475ae7), with Swift 6.3 for macOS (SPM) on 19 Apr 2026 20:17:35 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[277/347] Compiling SyntaxKit Literal.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[278/347] Compiling SyntaxKit LiteralValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[279/347] Compiling SyntaxKit NegatedPropertyAccessExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[280/347] Compiling SyntaxKit OptionalChainingExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[281/347] Compiling SyntaxKit PlusAssign.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[282/347] Compiling SyntaxKit PropertyAccessExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[283/347] Compiling SyntaxKit PropertyAccessible.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[284/347] Compiling SyntaxKit ReferenceExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[285/347] Compiling SyntaxKit Return.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[286/347] Compiling SyntaxKit Function+EffectSpecifiers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[287/347] Compiling SyntaxKit Function+Effects.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift:44:9: warning: TODO: Review fallback for failed expression conversion
42 |       // Fallback to a default expression if conversion fails
43 |       #warning(
44 |         "TODO: Review fallback for failed expression conversion"
   |         `- warning: TODO: Review fallback for failed expression conversion
45 |       )
46 |       baseExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:53:25: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
 51 |       return ExprSyntax(FloatLiteralExprSyntax(literal: .floatLiteral(String(value))))
 52 |     case .integer(let value):
 53 |       return ExprSyntax(IntegerLiteralExprSyntax(digits: .integerLiteral(String(value))))
    |                         |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                         `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
 54 |     case .nil:
 55 |       return ExprSyntax(NilLiteralExprSyntax(nilKeyword: .keyword(.nil)))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:65:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
 66 |         elements.enumerated().map { index, element in
 67 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:74:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
 75 |             label: nil,
 76 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift:125:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
123 |           elements.enumerated().map { index, keyValue in
124 |             let (key, value) = keyValue
125 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
126 |               keyExpression: key.exprSyntax,
127 |               colon: .colonToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:122:14: warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
120 |
121 |     case .integer(let value):
122 |       return IntegerLiteralExprSyntax(digits: .integerLiteral(String(value)))
    |              |- warning: 'init(leadingTrivia:_:digits:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:literal:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |              `- note: use 'init(leadingTrivia:_:literal:_:trailingTrivia:)' instead
123 |     case .nil:
124 |       return NilLiteralExprSyntax(nilKeyword: .keyword(.nil))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:130:27: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                           `- note: use 'LabeledExprListSyntax' instead
131 |         elements.enumerated().map { index, element in
132 |           let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:141:18: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                  `- note: use 'LabeledExprSyntax' instead
142 |             label: nil,
143 |             colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Literal.swift:177:20: warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
175 |           elements.enumerated().map { index, keyValue in
176 |             let (key, value) = keyValue
177 |             return DictionaryElementSyntax(
    |                    |- warning: 'init(leadingTrivia:_:keyExpression:_:colon:_:valueExpression:_:trailingComma:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                    `- note: use 'init(leadingTrivia:_:key:_:colon:_:value:_:trailingComma:_:trailingTrivia:)' instead
178 |               keyExpression: key.syntax.as(ExprSyntax.self)
179 |                 ?? ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(""))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead [#DeprecatedDeclaration]
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier [#DeprecatedDeclaration]
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[288/347] Compiling SyntaxKit CodeBlock+DictionaryValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[289/347] Compiling SyntaxKit CodeBlockableLiteral.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[290/347] Compiling SyntaxKit Dictionary+LiteralValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[291/347] Compiling SyntaxKit DictionaryExpr.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[292/347] Compiling SyntaxKit DictionaryLiteral.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[293/347] Compiling SyntaxKit DictionaryValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[294/347] Compiling SyntaxKit Literal+DictionaryValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[295/347] Compiling SyntaxKit PatternCodeBlock.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[296/347] Compiling SyntaxKit PatternConvertableCollection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[297/347] Compiling SyntaxKit Tuple.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[298/347] Compiling SyntaxKit TupleAssignment+AsyncSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[299/347] Compiling SyntaxKit TupleAssignment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[300/347] Compiling SyntaxKit TupleLiteralArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift:51:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |     // This prevents crashes while still allowing dictionary operations to continue
50 |     #warning(
51 |       "TODO: Review fallback for unsupported syntax types - consider if this should be an error instead"
   |       `- warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
52 |     )
53 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax' [#DeprecatedDeclaration]
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[301/347] Compiling SyntaxKit TuplePattern.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[302/347] Compiling SyntaxKit Do.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[303/347] Compiling SyntaxKit For.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[304/347] Compiling SyntaxKit Guard.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[305/347] Compiling SyntaxKit If+Body.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[306/347] Compiling SyntaxKit If+CodeBlockItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[307/347] Compiling SyntaxKit If+Conditions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[308/347] Compiling SyntaxKit If+ElseBody.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[309/347] Compiling SyntaxKit If.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[310/347] Compiling SyntaxKit Switch.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[311/347] Compiling SyntaxKit SwitchCase.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[312/347] Compiling SyntaxKit SwitchLet.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[313/347] Compiling SyntaxKit While.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift:88:9: warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 86 |       // Fallback to empty code block
 87 |       #warning(
 88 |         "TODO: Review fallback to empty code block - consider if this should be an error instead")
    |         `- warning: TODO: Review fallback to empty code block - consider if this should be an error instead
 89 |       return IfExprSyntax.ElseBody(
 90 |         CodeBlockSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:57:27: warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
 55 |           ?? DeclReferenceExprSyntax(baseName: .identifier(""))
 56 |       )
 57 |       whereClauseSyntax = WhereClauseSyntax(
    |                           |- warning: 'init(leadingTrivia:_:whereKeyword:_:guardResult:_:trailingTrivia:)' is deprecated: replaced by 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' [#DeprecatedDeclaration]
    |                           `- note: use 'init(leadingTrivia:_:whereKeyword:_:condition:_:trailingTrivia:)' instead
 58 |         whereKeyword: .keyword(.where, leadingTrivia: .space, trailingTrivia: .space),
 59 |         guardResult: whereExpr
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/For.swift:83:7: warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
 81 |
 82 |     return StmtSyntax(
 83 |       ForInStmtSyntax(
    |       |- warning: 'ForInStmtSyntax' is deprecated: renamed to 'ForStmtSyntax' [#DeprecatedDeclaration]
    |       `- note: use 'ForStmtSyntax' instead
 84 |         forKeyword: .keyword(.for, trailingTrivia: .space),
 85 |         tryKeyword: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ControlFlow/While.swift:69:9: warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
 67 |     case .repeatWhile:
 68 |       return StmtSyntax(
 69 |         RepeatWhileStmtSyntax(
    |         |- warning: 'RepeatWhileStmtSyntax' is deprecated: renamed to 'RepeatStmtSyntax' [#DeprecatedDeclaration]
    |         `- note: use 'RepeatStmtSyntax' instead
 70 |           repeatKeyword: .keyword(.repeat, trailingTrivia: .space),
 71 |           body: bodyBlock,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[314/352] Compiling SyntaxKit Parenthesized.swift
[315/352] Compiling SyntaxKit PropertyRequirement.swift
[316/352] Compiling SyntaxKit Then.swift
[317/352] Compiling SyntaxKit AttributeArguments.swift
[318/352] Compiling SyntaxKit ComputedProperty.swift
[319/352] Compiling SyntaxKit Variable+Attributes.swift
[320/352] Compiling SyntaxKit Variable+LiteralInitializers.swift
[321/352] Compiling SyntaxKit Variable+Modifiers.swift
[322/352] Compiling SyntaxKit Variable+TypedInitializers.swift
[323/352] Compiling SyntaxKit Variable.swift
[324/352] Compiling SyntaxKit VariableExp.swift
[325/352] Compiling SyntaxKit VariableKind.swift
[326/352] Compiling SyntaxParser SyntaxParser.swift
[327/352] Emitting module SyntaxParser
[328/352] Compiling SyntaxParser SourceRange.swift
[329/352] Compiling SyntaxParser SyntaxResponse.swift
[330/352] Compiling SyntaxParser TreeNode.swift
[331/354] Compiling skit Skit.swift
[332/354] Emitting module skit
[332/354] Write Objects.LinkFileList
[338/355] Compiling DocumentationHarness Validator.swift
[351/355] Emitting module DocumentationHarness
[353/355] Linking skit
[354/355] Applying skit
Build complete! (31.46s)
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/SyntaxParser/README.md
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "601.0.1",
            "upper_bound" : "602.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "SyntaxKit",
  "name" : "SyntaxKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SyntaxKit",
      "targets" : [
        "SyntaxKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "skit",
      "targets" : [
        "skit"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "skit",
      "module_type" : "SwiftTarget",
      "name" : "skit",
      "path" : "Sources/skit",
      "product_memberships" : [
        "skit"
      ],
      "sources" : [
        "Skit.swift"
      ],
      "target_dependencies" : [
        "SyntaxParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "TokenVisitor",
      "module_type" : "SwiftTarget",
      "name" : "TokenVisitor",
      "path" : "Sources/TokenVisitor",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftOperators",
        "SwiftParser"
      ],
      "product_memberships" : [
        "skit"
      ],
      "sources" : [
        "String.swift",
        "StructureProperty.swift",
        "StructureValue.swift",
        "Syntax.swift",
        "SyntaxClassifiable.swift",
        "SyntaxClassifiable/AttributeListSyntax.swift",
        "SyntaxClassifiable/CatchClauseListSyntax.swift",
        "SyntaxClassifiable/CodeBlockItemListSyntax.swift",
        "SyntaxClassifiable/ConditionElementListSyntax.swift",
        "SyntaxClassifiable/DeclModifierListSyntax.swift",
        "SyntaxClassifiable/DeclSyntax.swift",
        "SyntaxClassifiable/ExprSyntax.swift",
        "SyntaxClassifiable/FunctionParameterListSyntax.swift",
        "SyntaxClassifiable/IdentifierPatternSyntax.swift",
        "SyntaxClassifiable/IdentifierTypeSyntax.swift",
        "SyntaxClassifiable/LabeledExprListSyntax.swift",
        "SyntaxClassifiable/PatternBindingListSyntax.swift",
        "SyntaxClassifiable/PatternSyntax.swift",
        "SyntaxClassifiable/SwitchCaseItemListSyntax.swift",
        "SyntaxClassifiable/SwitchCaseListSyntax.swift",
        "SyntaxClassifiable/TypeSyntax.swift",
        "SyntaxClassifiable/VariableDeclSyntax.swift",
        "SyntaxType.swift",
        "Token.swift",
        "TokenVisitor.swift",
        "TreeNodeProtocol+Extensions.swift",
        "TreeNodeProtocol.swift",
        "TriviaPiece.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SyntaxParser",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxParser",
      "path" : "Sources/SyntaxParser",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftOperators",
        "SwiftParser"
      ],
      "product_memberships" : [
        "skit"
      ],
      "sources" : [
        "SourceRange.swift",
        "SyntaxParser.swift",
        "SyntaxResponse.swift",
        "TreeNode.swift"
      ],
      "target_dependencies" : [
        "TokenVisitor"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SyntaxKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxKitTests",
      "path" : "Tests/SyntaxKitTests",
      "sources" : [
        "Integration/BlackjackCardTests.swift",
        "Integration/BlackjackTests.swift",
        "Integration/CommentTests.swift",
        "Integration/CompleteProtocolsExampleTests.swift",
        "Integration/ConcurrencyExampleTests.swift",
        "Integration/ConditionalsExampleTests.swift",
        "Integration/ForLoopsExampleTests.swift",
        "Integration/SimpleDocTests.swift",
        "Integration/SwiftUIExampleTests.swift",
        "Unit/Attributes/AttributeTests.swift",
        "Unit/Collections/TupleAssignmentAsyncTests.swift",
        "Unit/Collections/TupleAssignmentBasicTests.swift",
        "Unit/Collections/TupleAssignmentEdgeCaseTests.swift",
        "Unit/Collections/TupleAssignmentIntegrationTests.swift",
        "Unit/ControlFlow/ConditionalsTests.swift",
        "Unit/ControlFlow/ForLoopTests.swift",
        "Unit/Core/PatternConvertibleTests.swift",
        "Unit/Declarations/ClassTests.swift",
        "Unit/Declarations/ExtensionTests.swift",
        "Unit/Declarations/ProtocolTests.swift",
        "Unit/Declarations/StructTests.swift",
        "Unit/Declarations/TypeAliasTests.swift",
        "Unit/EdgeCases/EdgeCaseTests.swift",
        "Unit/EdgeCases/EdgeCaseTestsExpressions.swift",
        "Unit/EdgeCases/EdgeCaseTestsTypes.swift",
        "Unit/ErrorHandling/CatchBasicTests.swift",
        "Unit/ErrorHandling/CatchComplexTests.swift",
        "Unit/ErrorHandling/CatchEdgeCaseTests.swift",
        "Unit/ErrorHandling/CatchIntegrationTests.swift",
        "Unit/ErrorHandling/DoBasicTests.swift",
        "Unit/ErrorHandling/DoComplexTests.swift",
        "Unit/ErrorHandling/DoEdgeCaseTests.swift",
        "Unit/ErrorHandling/DoIntegrationTests.swift",
        "Unit/ErrorHandling/ErrorHandlingTests.swift",
        "Unit/ErrorHandling/ThrowBasicTests.swift",
        "Unit/ErrorHandling/ThrowComplexTests.swift",
        "Unit/ErrorHandling/ThrowEdgeCaseTests.swift",
        "Unit/ErrorHandling/ThrowFunctionTests.swift",
        "Unit/Expressions/CallTests.swift",
        "Unit/Expressions/ClosureCaptureCoverageTests.swift",
        "Unit/Expressions/ClosureCoverageTests.swift",
        "Unit/Expressions/ConditionalOp/ConditionalOpBasicTests.swift",
        "Unit/Expressions/ConditionalOp/ConditionalOpComplexTests.swift",
        "Unit/Expressions/ConditionalOp/ConditionalOpLiteralTests.swift",
        "Unit/Expressions/LiteralTests.swift",
        "Unit/Expressions/LiteralValueTests.swift",
        "Unit/Expressions/NegatedPropertyAccessExp/NegatedPropertyAccessExpBasicTests.swift",
        "Unit/Expressions/NegatedPropertyAccessExp/NegatedPropertyAccessExpFunctionTests.swift",
        "Unit/Expressions/NegatedPropertyAccessExp/NegatedPropertyAccessExpLiteralTests.swift",
        "Unit/Expressions/NegatedPropertyAccessExp/NegatedPropertyAccessExpPropertyTests.swift",
        "Unit/Expressions/OptionalChaining/OptionalChainingBasicTests.swift",
        "Unit/Expressions/OptionalChaining/OptionalChainingLiteralTests.swift",
        "Unit/Expressions/OptionalChaining/OptionalChainingOperatorTests.swift",
        "Unit/Expressions/OptionalChaining/OptionalChainingPropertyTests.swift",
        "Unit/Expressions/PlusAssign/PlusAssignBasicTests.swift",
        "Unit/Expressions/PlusAssign/PlusAssignLiteralTests.swift",
        "Unit/Expressions/PlusAssign/PlusAssignPropertyTests.swift",
        "Unit/Expressions/PlusAssign/PlusAssignSpecialValueTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpBasicTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpComplexTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpFunctionTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpLiteralTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpPropertyTests.swift",
        "Unit/Functions/FunctionTests.swift",
        "Unit/Integration/FrameworkCompatibilityTests.swift",
        "Unit/Integration/OptionsMacroIntegrationTests.swift",
        "Unit/Integration/OptionsMacroIntegrationTestsAPI.swift",
        "Unit/Migration/AssertionMigrationTests.swift",
        "Unit/Migration/CodeStyleMigrationTests.swift",
        "Unit/Migration/MigrationTests.swift",
        "Unit/SwiftUIFeatureTests.swift",
        "Unit/Utilities/NormalizeOptions.swift",
        "Unit/Utilities/String+NormalizeExtensions.swift",
        "Unit/Variables/VariableCoverageTests.swift",
        "Unit/Variables/VariableStaticTests.swift"
      ],
      "target_dependencies" : [
        "SyntaxKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SyntaxKit",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxKit",
      "path" : "Sources/SyntaxKit",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftOperators",
        "SwiftParser"
      ],
      "product_memberships" : [
        "SyntaxKit"
      ],
      "sources" : [
        "Attributes/Attribute.swift",
        "Attributes/AttributeInfo.swift",
        "Attributes/Trivia+Comments.swift",
        "CodeBlocks/CodeBlock+ExprSyntax.swift",
        "CodeBlocks/CodeBlock+Generate.swift",
        "CodeBlocks/CodeBlockBuilder.swift",
        "CodeBlocks/CodeBlockBuilderResult.swift",
        "CodeBlocks/CodeBlockItemSyntax.Item.swift",
        "CodeBlocks/CommentedCodeBlock.swift",
        "CodeBlocks/EmptyCodeBlock.swift",
        "CodeBlocks/ExprCodeBlock.swift",
        "Collections/Array+LiteralValue.swift",
        "Collections/ArrayLiteral.swift",
        "Collections/CodeBlock+DictionaryValue.swift",
        "Collections/CodeBlockableLiteral.swift",
        "Collections/Dictionary+LiteralValue.swift",
        "Collections/DictionaryExpr.swift",
        "Collections/DictionaryLiteral.swift",
        "Collections/DictionaryValue.swift",
        "Collections/Literal+DictionaryValue.swift",
        "Collections/PatternCodeBlock.swift",
        "Collections/PatternConvertableCollection.swift",
        "Collections/Tuple.swift",
        "Collections/TupleAssignment+AsyncSet.swift",
        "Collections/TupleAssignment.swift",
        "Collections/TupleLiteralArray.swift",
        "Collections/TuplePattern.swift",
        "ControlFlow/Do.swift",
        "ControlFlow/For.swift",
        "ControlFlow/Guard.swift",
        "ControlFlow/If+Body.swift",
        "ControlFlow/If+CodeBlockItem.swift",
        "ControlFlow/If+Conditions.swift",
        "ControlFlow/If+ElseBody.swift",
        "ControlFlow/If.swift",
        "ControlFlow/Switch.swift",
        "ControlFlow/SwitchCase.swift",
        "ControlFlow/SwitchLet.swift",
        "ControlFlow/While.swift",
        "Core/AccessModifier.swift",
        "Core/CaptureReferenceType.swift",
        "Core/CodeBlock.swift",
        "Core/ExprCodeBlockBuilder.swift",
        "Core/Keyword+AccessModifier.swift",
        "Core/Keyword+CaptureReferenceType.swift",
        "Core/Line+Trivia.swift",
        "Core/Line.swift",
        "Core/PatternConvertible.swift",
        "Core/PatternConvertibleBuilder.swift",
        "Core/String+TypeRepresentable.swift",
        "Core/TypeRepresentable.swift",
        "Declarations/Class.swift",
        "Declarations/Enum.swift",
        "Declarations/Extension.swift",
        "Declarations/Import.swift",
        "Declarations/Init.swift",
        "Declarations/Protocol.swift",
        "Declarations/Struct+Public.swift",
        "Declarations/Struct.swift",
        "Declarations/TypeAlias.swift",
        "ErrorHandling/Catch.swift",
        "ErrorHandling/CatchBuilder.swift",
        "ErrorHandling/Throw.swift",
        "Expressions/Assignment.swift",
        "Expressions/Call.swift",
        "Expressions/CaptureInfo.swift",
        "Expressions/Closure+Body.swift",
        "Expressions/Closure+Capture.swift",
        "Expressions/Closure+Signature.swift",
        "Expressions/Closure.swift",
        "Expressions/ClosureParameter.swift",
        "Expressions/ClosureParameterBuilderResult.swift",
        "Expressions/ClosureType.swift",
        "Expressions/ConditionalOp.swift",
        "Expressions/FunctionCallExp.swift",
        "Expressions/Infix+Comparison.swift",
        "Expressions/Infix.swift",
        "Expressions/Literal+Convenience.swift",
        "Expressions/Literal+ExprCodeBlock.swift",
        "Expressions/Literal+PatternConvertible.swift",
        "Expressions/Literal.swift",
        "Expressions/LiteralValue.swift",
        "Expressions/NegatedPropertyAccessExp.swift",
        "Expressions/OptionalChainingExp.swift",
        "Expressions/PlusAssign.swift",
        "Expressions/PropertyAccessExp.swift",
        "Expressions/PropertyAccessible.swift",
        "Expressions/ReferenceExp.swift",
        "Expressions/Return.swift",
        "Functions/Function+EffectSpecifiers.swift",
        "Functions/Function+Effects.swift",
        "Functions/Function+Modifiers.swift",
        "Functions/Function+Syntax.swift",
        "Functions/Function.swift",
        "Functions/FunctionParameterSyntax+Init.swift",
        "Functions/FunctionRequirement.swift",
        "Parameters/Parameter.swift",
        "Parameters/ParameterBuilderResult.swift",
        "Parameters/ParameterExp.swift",
        "Parameters/ParameterExpBuilderResult.swift",
        "Patterns/Int+PatternConvertible.swift",
        "Patterns/LetBindingPattern.swift",
        "Patterns/Range+PatternConvertible.swift",
        "Patterns/String+PatternConvertible.swift",
        "Utilities/Break.swift",
        "Utilities/Case.swift",
        "Utilities/CodeBlock+Comment.swift",
        "Utilities/CodeBlockable.swift",
        "Utilities/CommentBuilderResult.swift",
        "Utilities/Continue.swift",
        "Utilities/Default.swift",
        "Utilities/EnumCase+Syntax.swift",
        "Utilities/EnumCase.swift",
        "Utilities/Fallthrough.swift",
        "Utilities/Group.swift",
        "Utilities/Let.swift",
        "Utilities/Parenthesized.swift",
        "Utilities/PropertyRequirement.swift",
        "Utilities/Then.swift",
        "Variables/AttributeArguments.swift",
        "Variables/ComputedProperty.swift",
        "Variables/Variable+Attributes.swift",
        "Variables/Variable+LiteralInitializers.swift",
        "Variables/Variable+Modifiers.swift",
        "Variables/Variable+TypedInitializers.swift",
        "Variables/Variable.swift",
        "Variables/VariableExp.swift",
        "Variables/VariableKind.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SyntaxDocTests",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxDocTests",
      "path" : "Tests/SyntaxDocTests",
      "sources" : [
        "DocumentationExampleTests.swift",
        "DocumentationTestError.swift",
        "Settings.swift"
      ],
      "target_dependencies" : [
        "SyntaxKit",
        "DocumentationHarness"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DocumentationHarness",
      "module_type" : "SwiftTarget",
      "name" : "DocumentationHarness",
      "path" : "Sources/DocumentationHarness",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftOperators",
        "SwiftParser"
      ],
      "sources" : [
        "CodeBlock.swift",
        "CodeBlockExtraction.swift",
        "CodeBlockExtractor.swift",
        "CodeBlockExtractorError.swift",
        "CodeBlockType.swift",
        "CodeBlockValidationParameters.swift",
        "CodeSyntaxValidator.swift",
        "CompilationResult.swift",
        "DocumentationValidator.swift",
        "FileManager+Documentation.swift",
        "FileSearchError.swift",
        "FileSearcher.swift",
        "PackageValidator.swift",
        "SyntaxValidator.swift",
        "TestType.swift",
        "ValidationError.swift",
        "ValidationParameters.swift",
        "ValidationResult.swift",
        "Validator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.