The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SyntaxKit, reference 0.0.3 (ae00fd), with Swift 6.1 for macOS (SPM) on 11 Sep 2025 04:42:50 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

102 |       calledExpression: ExprSyntax(
103 |         MemberAccessExprSyntax(
    |         `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
104 |           base: baseExpr,
105 |           dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Infix+Comparison.swift:30:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
28 | //
29 |
30 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
31 |
32 | // MARK: - Comparison Operators
/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:)'
 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:)'
    |                         `- 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'
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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:)'
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:)'
    |              `- 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'
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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/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("")))
[230/291] Compiling SyntaxKit Literal+ExprCodeBlock.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/FunctionCallExp.swift:103:9: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
101 |     let functionCall = FunctionCallExprSyntax(
102 |       calledExpression: ExprSyntax(
103 |         MemberAccessExprSyntax(
    |         `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
104 |           base: baseExpr,
105 |           dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Infix+Comparison.swift:30:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
28 | //
29 |
30 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
31 |
32 | // MARK: - Comparison Operators
/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:)'
 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:)'
    |                         `- 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'
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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:)'
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:)'
    |              `- 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'
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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/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("")))
[231/291] Compiling SyntaxKit Literal+PatternConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/FunctionCallExp.swift:103:9: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
101 |     let functionCall = FunctionCallExprSyntax(
102 |       calledExpression: ExprSyntax(
103 |         MemberAccessExprSyntax(
    |         `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
104 |           base: baseExpr,
105 |           dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Infix+Comparison.swift:30:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
28 | //
29 |
30 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
31 |
32 | // MARK: - Comparison Operators
/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:)'
 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:)'
    |                         `- 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'
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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:)'
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:)'
    |              `- 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'
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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/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("")))
[232/291] Compiling SyntaxKit Literal.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/FunctionCallExp.swift:103:9: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
101 |     let functionCall = FunctionCallExprSyntax(
102 |       calledExpression: ExprSyntax(
103 |         MemberAccessExprSyntax(
    |         `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
104 |           base: baseExpr,
105 |           dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Infix+Comparison.swift:30:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
28 | //
29 |
30 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
31 |
32 | // MARK: - Comparison Operators
/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:)'
 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:)'
    |                         `- 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'
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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:)'
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:)'
    |              `- 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'
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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/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("")))
[233/291] Compiling SyntaxKit LiteralValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/FunctionCallExp.swift:103:9: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
101 |     let functionCall = FunctionCallExprSyntax(
102 |       calledExpression: ExprSyntax(
103 |         MemberAccessExprSyntax(
    |         `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
104 |           base: baseExpr,
105 |           dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Infix+Comparison.swift:30:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
28 | //
29 |
30 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
31 |
32 | // MARK: - Comparison Operators
/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:)'
 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:)'
    |                         `- 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'
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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:)'
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:)'
    |              `- 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'
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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/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("")))
[234/291] Compiling SyntaxKit NegatedPropertyAccessExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/FunctionCallExp.swift:103:9: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
101 |     let functionCall = FunctionCallExprSyntax(
102 |       calledExpression: ExprSyntax(
103 |         MemberAccessExprSyntax(
    |         `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
104 |           base: baseExpr,
105 |           dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Infix+Comparison.swift:30:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
28 | //
29 |
30 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
31 |
32 | // MARK: - Comparison Operators
/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:)'
 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:)'
    |                         `- 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'
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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:)'
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:)'
    |              `- 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'
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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/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("")))
[235/291] Compiling SyntaxKit OptionalChainingExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/FunctionCallExp.swift:103:9: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
101 |     let functionCall = FunctionCallExprSyntax(
102 |       calledExpression: ExprSyntax(
103 |         MemberAccessExprSyntax(
    |         `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
104 |           base: baseExpr,
105 |           dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Infix+Comparison.swift:30:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
28 | //
29 |
30 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
31 |
32 | // MARK: - Comparison Operators
/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:)'
 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:)'
    |                         `- 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'
 63 |       return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(value)))
 64 |     case .tuple(let elements):
 65 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
 72 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
 73 |           }
 74 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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:)'
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:)'
    |              `- 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'
128 |       return DeclReferenceExprSyntax(baseName: .identifier(value))
129 |     case .tuple(let elements):
130 |       let tupleElements = TupleExprElementListSyntax(
    |                           |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                           `- 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'
139 |             elementExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("_")))
140 |           }
141 |           return TupleExprElementSyntax(
    |                  |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                  `- 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:)'
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:)'
    |                    `- 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/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("")))
[236/291] Compiling SyntaxKit Protocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[237/291] Compiling SyntaxKit Struct+Public.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[238/291] Compiling SyntaxKit Struct.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[239/291] Compiling SyntaxKit TypeAlias.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[240/291] Compiling SyntaxKit Catch.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[241/291] Compiling SyntaxKit CatchBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[242/291] Compiling SyntaxKit Throw.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[243/291] Compiling SyntaxKit Assignment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[244/291] Compiling SyntaxKit Call.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[245/291] Compiling SyntaxKit CaptureInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[246/291] Compiling SyntaxKit Closure+Body.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[247/291] Compiling SyntaxKit Closure+Capture.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[248/291] Compiling SyntaxKit Closure+Signature.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[249/291] Compiling SyntaxKit Closure.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:51:30: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 49 |             baseParts.count == 2 ? (String(baseParts[0]), String(baseParts[1])) : ("", baseName)
 50 |           // Build the pattern: .caseName(let a, let b)
 51 |           let memberAccess = MemberAccessExprSyntax(
    |                              `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
 52 |             base: typeName.isEmpty
 53 |               ? nil : ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier(typeName))),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:57:15: warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 55 |             name: .identifier(caseName)
 56 |           )
 57 |           let patternWithTuple = PatternSyntax(
    |               `- warning: initialization of immutable value 'patternWithTuple' was never used; consider replacing with assignment to '_' or removing it
 58 |             ValueBindingPatternSyntax(
 59 |               bindingSpecifier: .keyword(.case, trailingTrivia: .space),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/ErrorHandling/Catch.swift:69:15: warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 67 |           // Actually, Swift's catch pattern for associated values is: .caseName(let a, let b)
 68 |           // So we want: ExpressionPatternSyntax(MemberAccessExprSyntax + tuplePattern)
 69 |           let tuplePattern = TuplePatternSyntax(
    |               `- warning: initialization of immutable value 'tuplePattern' was never used; consider replacing with assignment to '_' or removing it
 70 |             leftParen: .leftParenToken(),
 71 |             elements: TuplePatternElementListSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:57:9: warning: TODO: Review fallback for non-VariableExp capture expression
55 |       self.name = .identifier("self")  // fallback
56 |       #warning(
57 |         "TODO: Review fallback for non-VariableExp capture expression"
   |         `- warning: TODO: Review fallback for non-VariableExp capture expression
58 |       )
59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/CaptureInfo.swift:70:9: warning: TODO: Review fallback for non-VariableExp parameter value
68 |       self.name = .identifier("self")  // fallback
69 |       #warning(
70 |         "TODO: Review fallback for non-VariableExp parameter value"
   |         `- warning: TODO: Review fallback for non-VariableExp parameter value
71 |       )
72 |     }
[250/291] Compiling SyntaxKit Attribute.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[251/291] Compiling SyntaxKit AttributeInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[252/291] Compiling SyntaxKit Trivia+Comments.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[253/291] Compiling SyntaxKit CodeBlock+ExprSyntax.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[254/291] Compiling SyntaxKit CodeBlock+Generate.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[255/291] Compiling SyntaxKit CodeBlockBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[256/291] Compiling SyntaxKit CodeBlockBuilderResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[257/291] Compiling SyntaxKit CodeBlockItemSyntax.Item.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[258/291] Compiling SyntaxKit CommentedCodeBlock.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[259/291] Compiling SyntaxKit EmptyCodeBlock.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[260/291] Compiling SyntaxKit ExprCodeBlock.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[261/291] Compiling SyntaxKit Array+LiteralValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[262/291] Compiling SyntaxKit ArrayLiteral.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[263/291] Compiling SyntaxKit CodeBlock+DictionaryValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift:52:7: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
50 |     // This prevents crashes while still allowing code generation to continue
51 |     #warning(
52 |       "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
53 |     )
54 |     return ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:51:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
49 |         // This prevents crashes while still allowing code generation 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 |         let emptyExpr = ExprSyntax(DeclReferenceExprSyntax(baseName: .identifier("")))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | extension CodeBlock {
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift:51:9: warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
49 |       // This is a fallback for when SwitchCase is used standalone
50 |       #warning(
51 |         "TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead"
   |         `- warning: TODO: Review fallback for SwitchCase used standalone - consider if this should be an error instead
52 |       )
53 |       let switchExpr = SwitchExprSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift:63:16: warning: TODO: Review fallback for no tokens - consider if this should be an error instead
61 |     guard let firstToken = base.syntax.firstToken(viewMode: .sourceAccurate) else {
62 |       // Fallback – no tokens? return original syntax
63 |       #warning("TODO: Review fallback for no tokens - consider if this should be an error instead")
   |                `- warning: TODO: Review fallback for no tokens - consider if this should be an error instead
64 |       return base.syntax
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift:31:8: warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
29 |
30 | import Foundation
31 | public import SwiftSyntax
   |        `- warning: public import of 'SwiftSyntax' was not used in public declarations or inlinable code
32 |
33 | /// An empty code block that generates no syntax.
/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("")))
[264/291] Compiling SyntaxKit ParameterExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[265/291] Compiling SyntaxKit ParameterExpBuilderResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[266/291] Compiling SyntaxKit SourceRange.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[267/291] Compiling SyntaxKit String+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[268/291] Compiling SyntaxKit String.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[269/291] Compiling SyntaxKit StructureProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[270/291] Compiling SyntaxKit StructureValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[271/291] Compiling SyntaxKit SyntaxParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[272/291] Compiling SyntaxKit SyntaxResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[273/291] Compiling SyntaxKit SyntaxType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[274/291] Compiling SyntaxKit Token.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[275/291] Compiling SyntaxKit TokenVisitor+Helpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[276/291] Compiling SyntaxKit TokenVisitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[277/291] Compiling SyntaxKit TreeNode.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:44:9: warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
42 |
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
   |         `- warning: initialization of immutable value 'start' was never used; consider replacing with assignment to '_' or removing it
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:45:9: warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
43 |     let sourceRange = token.sourceRange(converter: locationConverter)
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
   |         `- warning: initialization of immutable value 'end' was never used; consider replacing with assignment to '_' or removing it
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
47 |   }
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor+Helpers.swift:46:9: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
44 |     let start = sourceRange.start
45 |     let end = sourceRange.end
46 |     let text = token.presence == .present || showMissingTokens ? token.text : ""
   |         `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it
47 |   }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:64:9: warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 62 |     let end = sourceRange.end
 63 |
 64 |     let graphemeStartColumn: Int
    |         `- warning: immutable value 'graphemeStartColumn' was never used; consider removing it
 65 |     if let prefix = String(
 66 |       locationConverter.sourceLines[start.line - 1].utf8.prefix(start.column - 1)
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Parser/TokenVisitor.swift:72:9: warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 70 |       graphemeStartColumn = start.column
 71 |     }
 72 |     let graphemeEndColumn: Int
    |         `- warning: immutable value 'graphemeEndColumn' was never used; consider removing it
 73 |     if let prefix = String(
 74 |       locationConverter.sourceLines[end.line - 1].utf8.prefix(end.column - 1)
[278/291] Compiling SyntaxKit Group.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[279/291] Compiling SyntaxKit Let.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[280/291] Compiling SyntaxKit Parenthesized.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[281/291] Compiling SyntaxKit PropertyRequirement.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[282/291] Compiling SyntaxKit Then.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[283/291] Compiling SyntaxKit AttributeArguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[284/291] Compiling SyntaxKit ComputedProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[285/291] Compiling SyntaxKit Variable+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[286/291] Compiling SyntaxKit Variable+LiteralInitializers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[287/291] Compiling SyntaxKit Variable+Modifiers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[288/291] Compiling SyntaxKit Variable+TypedInitializers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[289/291] Compiling SyntaxKit Variable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[290/291] Compiling SyntaxKit VariableExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
[291/291] Compiling SyntaxKit VariableKind.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Utilities/Group.swift:53:11: warning: TODO: Review fallback for unsupported syntax types - consider if this should be an error instead
51 |         // This allows the group to continue processing other valid blocks
52 |         #warning(
53 |           "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
54 |         )
55 |         return []
Build of target: 'SyntaxKit' complete! (11.32s)
    1678
11	/Users/admin/builder/spi-builder-workspace/.docs/brightdigit/syntaxkit/0.0.3
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/brightdigit/syntaxkit/0.0.3
File count: 1678
Doc size:   11.0MB
Preparing doc bundle ...
Uploading prod-brightdigit-syntaxkit-0.0.3-1a67b4d2.zip to s3://spi-docs-inbox/prod-brightdigit-syntaxkit-0.0.3-1a67b4d2.zip
Copying... [11%]
Copying... [22%]
Copying... [33%]
Copying... [41%]
Copying... [52%]
Copying... [63%]
Copying... [71%]
Copying... [82%]
Copying... [93%]
Copying... [100%]
Done.