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.0 for macOS (SPM) on 11 Sep 2025 04:43:28 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

    |         `- 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)
[240/329] 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)
[241/329] Compiling SyntaxKit PlusAssign.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[242/329] Compiling SyntaxKit PropertyAccessExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[243/329] Compiling SyntaxKit PropertyAccessible.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[244/329] Compiling SyntaxKit ReferenceExp.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[245/329] Compiling SyntaxKit Return.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[246/329] Compiling SyntaxKit Function+EffectSpecifiers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[247/329] Compiling SyntaxKit Function+Effects.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[248/329] Compiling SyntaxKit Function+Modifiers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[249/329] Compiling SyntaxKit Function+Syntax.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[250/329] Compiling SyntaxKit Function.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[251/329] Compiling SyntaxKit FunctionParameterSyntax+Init.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[252/329] Compiling SyntaxKit FunctionRequirement.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[253/329] Compiling SyntaxKit Parameter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[254/329] Compiling SyntaxKit ParameterBuilderResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift:45:7: warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
43 |     let property = TokenSyntax.identifier(propertyName)
44 |     return ExprSyntax(
45 |       MemberAccessExprSyntax(
   |       `- warning: 'init(leadingTrivia:_:base:_:dot:_:name:_:declNameArguments:_:trailingTrivia:)' is deprecated: Use initializer taking `DeclReferenceExprSyntax` instead
46 |         base: baseSyntax,
47 |         dot: .periodToken(),
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Expressions/Return.swift:54:11: warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
52 |         // fallback: no valid expression
53 |         #warning(
54 |           "TODO: Review fallback for no valid expression - consider if this should be an error instead"
   |           `- warning: TODO: Review fallback for no valid expression - consider if this should be an error instead
55 |         )
56 |         return ReturnStmtSyntax(
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:46:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
44 |         )
45 |       } else {
46 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
47 |           asyncSpecifier: nil,
48 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:52:14: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
50 |       }
51 |     case .async:
52 |       return FunctionEffectSpecifiersSyntax(
   |              `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
53 |         asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
54 |         throwsSpecifier: nil
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift:64:16: warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
62 |         )
63 |       } else {
64 |         return FunctionEffectSpecifiersSyntax(
   |                `- warning: 'init(leadingTrivia:_:asyncSpecifier:_:throwsSpecifier:_:trailingTrivia:)' is deprecated: use throwsClause instead of throwsSpecifier
65 |           asyncSpecifier: .keyword(.async, leadingTrivia: .space, trailingTrivia: .space),
66 |           throwsSpecifier: throwsSpecifier
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/Function+Syntax.swift:94:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 92 |     }
 93 |     if isMutating {
 94 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 95 |         modifiers + [
 96 |           DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Functions/FunctionRequirement.swift:92:19: warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 90 |     }
 91 |     if isMutating {
 92 |       modifiers = DeclModifierListSyntax(
    |                   `- warning: 'init(_:)' is deprecated: Call to initializer is not necessary.
 93 |         modifiers + [DeclModifierSyntax(name: .keyword(.mutating, trailingTrivia: .space))]
 94 |       )
[255/329] Compiling SyntaxKit ExprCodeBlockBuilder.swift
[256/329] Compiling SyntaxKit Keyword+AccessModifier.swift
[257/329] Compiling SyntaxKit Keyword+CaptureReferenceType.swift
[258/329] Compiling SyntaxKit Line+Trivia.swift
[259/329] Compiling SyntaxKit Line.swift
[260/329] Compiling SyntaxKit PatternConvertible.swift
[261/329] Compiling SyntaxKit PatternConvertibleBuilder.swift
[262/329] Compiling SyntaxKit String+TypeRepresentable.swift
[263/329] Compiling SyntaxKit TypeRepresentable.swift
[264/329] Compiling SyntaxKit Class.swift
[265/329] Compiling SyntaxKit Enum.swift
[266/329] Compiling SyntaxKit Extension.swift
[267/329] Compiling SyntaxKit Import.swift
[268/329] Compiling SyntaxKit Init.swift
[269/329] Compiling SyntaxKit CodeBlockableLiteral.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[270/329] Compiling SyntaxKit Dictionary+LiteralValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[271/329] Compiling SyntaxKit DictionaryExpr.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[272/329] Compiling SyntaxKit DictionaryLiteral.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[273/329] Compiling SyntaxKit DictionaryValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[274/329] Compiling SyntaxKit Literal+DictionaryValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[275/329] Compiling SyntaxKit PatternCodeBlock.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[276/329] Compiling SyntaxKit PatternConvertableCollection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[277/329] Compiling SyntaxKit Tuple.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[278/329] Compiling SyntaxKit TupleAssignment+AsyncSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[279/329] Compiling SyntaxKit TupleAssignment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[280/329] Compiling SyntaxKit TupleLiteralArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[281/329] Compiling SyntaxKit TuplePattern.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[282/329] Compiling SyntaxKit Do.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:40:16: warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
 38 |   /// The SwiftSyntax representation of this tuple expression.
 39 |   public var syntax: any SyntaxProtocol {
 40 |     let list = TupleExprElementListSyntax(
    |                |- warning: 'TupleExprElementListSyntax' is deprecated: renamed to 'LabeledExprListSyntax'
    |                `- note: use 'LabeledExprListSyntax' instead
 41 |       elements.enumerated().map { index, block in
 42 |         let elementExpr: ExprSyntax
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/Tuple.swift:56:16: warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
 54 |         }
 55 |
 56 |         return TupleExprElementSyntax(
    |                |- warning: 'TupleExprElementSyntax' is deprecated: renamed to 'LabeledExprSyntax'
    |                `- note: use 'LabeledExprSyntax' instead
 57 |           label: nil,
 58 |           colon: nil,
/Users/admin/builder/spi-builder-workspace/Sources/SyntaxKit/Collections/TupleAssignment.swift:89:9: warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 87 |       // This provides a more robust API instead of crashing
 88 |       #warning(
 89 |         "TODO: Review fallback for asyncSet conditions - consider if this should be an error instead"
    |         `- warning: TODO: Review fallback for asyncSet conditions - consider if this should be an error instead
 90 |       )
 91 |       return generateRegularSyntax()
[283/329] Compiling SyntaxKit Struct.swift
[284/329] Compiling SyntaxKit TypeAlias.swift
[285/329] 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 |     }
[286/329] 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 |     }
/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 |     }
/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 |     }
[289/329] 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 |     }
[290/329] 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 |     }
[291/329] 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 |     }
[292/329] 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 |     }
[293/329] 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 |     }
[294/329] 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 |     }
[295/329] 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 |     }
[296/329] 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 |     }
[297/329] 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 |     }
[298/329] 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 |     }
/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("")))
/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("")))
[301/329] 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("")))
[302/329] 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("")))
/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("")))
/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("")))
[305/329] 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("")))
[306/329] 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("")))
[307/329] 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("")))
[308/329] 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("")))
[309/329] 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("")))
[310/329] 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("")))
[311/329] 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("")))
[312/329] 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("")))
[321/329] Emitting module DocumentationHarness
[326/329] Compiling DocumentationHarness Validator.swift
[327/331] Emitting module skit
[328/331] Compiling skit main.swift
[328/331] Write Objects.LinkFileList
[329/331] Linking skit
[330/331] Applying skit
Build complete! (42.48s)
Fetching https://github.com/swiftlang/swift-docc-plugin
Fetching https://github.com/swiftlang/swift-syntax.git
[1/2094] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.11s)
[1/71911] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax.git from cache (2.88s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 601.0.1 (3.32s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (0.58s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3507] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.15s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.61s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 601.0.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "601.0.1",
            "upper_bound" : "602.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "SyntaxKit",
  "name" : "SyntaxKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SyntaxKit",
      "targets" : [
        "SyntaxKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "skit",
      "targets" : [
        "skit"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "skit",
      "module_type" : "SwiftTarget",
      "name" : "skit",
      "path" : "Sources/skit",
      "product_memberships" : [
        "skit"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "SyntaxKit"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SyntaxKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxKitTests",
      "path" : "Tests/SyntaxKitTests",
      "sources" : [
        "Integration/BlackjackCardTests.swift",
        "Integration/BlackjackTests.swift",
        "Integration/CommentTests.swift",
        "Integration/CompleteProtocolsExampleTests.swift",
        "Integration/ConcurrencyExampleTests.swift",
        "Integration/ConditionalsExampleTests.swift",
        "Integration/ForLoopsExampleTests.swift",
        "Integration/SimpleDocTests.swift",
        "Integration/SwiftUIExampleTests.swift",
        "Unit/Attributes/AttributeTests.swift",
        "Unit/Collections/TupleAssignmentAsyncTests.swift",
        "Unit/Collections/TupleAssignmentBasicTests.swift",
        "Unit/Collections/TupleAssignmentEdgeCaseTests.swift",
        "Unit/Collections/TupleAssignmentIntegrationTests.swift",
        "Unit/ControlFlow/ConditionalsTests.swift",
        "Unit/ControlFlow/ForLoopTests.swift",
        "Unit/Core/PatternConvertibleTests.swift",
        "Unit/Declarations/ClassTests.swift",
        "Unit/Declarations/ExtensionTests.swift",
        "Unit/Declarations/ProtocolTests.swift",
        "Unit/Declarations/StructTests.swift",
        "Unit/Declarations/TypeAliasTests.swift",
        "Unit/EdgeCases/EdgeCaseTests.swift",
        "Unit/EdgeCases/EdgeCaseTestsExpressions.swift",
        "Unit/EdgeCases/EdgeCaseTestsTypes.swift",
        "Unit/ErrorHandling/CatchBasicTests.swift",
        "Unit/ErrorHandling/CatchComplexTests.swift",
        "Unit/ErrorHandling/CatchEdgeCaseTests.swift",
        "Unit/ErrorHandling/CatchIntegrationTests.swift",
        "Unit/ErrorHandling/DoBasicTests.swift",
        "Unit/ErrorHandling/DoComplexTests.swift",
        "Unit/ErrorHandling/DoEdgeCaseTests.swift",
        "Unit/ErrorHandling/DoIntegrationTests.swift",
        "Unit/ErrorHandling/ErrorHandlingTests.swift",
        "Unit/ErrorHandling/ThrowBasicTests.swift",
        "Unit/ErrorHandling/ThrowComplexTests.swift",
        "Unit/ErrorHandling/ThrowEdgeCaseTests.swift",
        "Unit/ErrorHandling/ThrowFunctionTests.swift",
        "Unit/Expressions/CallTests.swift",
        "Unit/Expressions/ClosureCaptureCoverageTests.swift",
        "Unit/Expressions/ClosureCoverageTests.swift",
        "Unit/Expressions/ConditionalOp/ConditionalOpBasicTests.swift",
        "Unit/Expressions/ConditionalOp/ConditionalOpComplexTests.swift",
        "Unit/Expressions/ConditionalOp/ConditionalOpLiteralTests.swift",
        "Unit/Expressions/LiteralTests.swift",
        "Unit/Expressions/LiteralValueTests.swift",
        "Unit/Expressions/NegatedPropertyAccessExp/NegatedPropertyAccessExpBasicTests.swift",
        "Unit/Expressions/NegatedPropertyAccessExp/NegatedPropertyAccessExpFunctionTests.swift",
        "Unit/Expressions/NegatedPropertyAccessExp/NegatedPropertyAccessExpLiteralTests.swift",
        "Unit/Expressions/NegatedPropertyAccessExp/NegatedPropertyAccessExpPropertyTests.swift",
        "Unit/Expressions/OptionalChaining/OptionalChainingBasicTests.swift",
        "Unit/Expressions/OptionalChaining/OptionalChainingLiteralTests.swift",
        "Unit/Expressions/OptionalChaining/OptionalChainingOperatorTests.swift",
        "Unit/Expressions/OptionalChaining/OptionalChainingPropertyTests.swift",
        "Unit/Expressions/PlusAssign/PlusAssignBasicTests.swift",
        "Unit/Expressions/PlusAssign/PlusAssignLiteralTests.swift",
        "Unit/Expressions/PlusAssign/PlusAssignPropertyTests.swift",
        "Unit/Expressions/PlusAssign/PlusAssignSpecialValueTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpBasicTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpComplexTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpFunctionTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpLiteralTests.swift",
        "Unit/Expressions/ReferenceExp/ReferenceExpPropertyTests.swift",
        "Unit/Functions/FunctionTests.swift",
        "Unit/Integration/FrameworkCompatibilityTests.swift",
        "Unit/Integration/OptionsMacroIntegrationTests.swift",
        "Unit/Integration/OptionsMacroIntegrationTestsAPI.swift",
        "Unit/Migration/AssertionMigrationTests.swift",
        "Unit/Migration/CodeStyleMigrationTests.swift",
        "Unit/Migration/MigrationTests.swift",
        "Unit/SwiftUIFeatureTests.swift",
        "Unit/Utilities/NormalizeOptions.swift",
        "Unit/Utilities/String+NormalizeExtensions.swift",
        "Unit/Variables/VariableCoverageTests.swift",
        "Unit/Variables/VariableStaticTests.swift"
      ],
      "target_dependencies" : [
        "SyntaxKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SyntaxKit",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxKit",
      "path" : "Sources/SyntaxKit",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftOperators",
        "SwiftParser"
      ],
      "product_memberships" : [
        "SyntaxKit",
        "skit"
      ],
      "sources" : [
        "Attributes/Attribute.swift",
        "Attributes/AttributeInfo.swift",
        "Attributes/Trivia+Comments.swift",
        "CodeBlocks/CodeBlock+ExprSyntax.swift",
        "CodeBlocks/CodeBlock+Generate.swift",
        "CodeBlocks/CodeBlockBuilder.swift",
        "CodeBlocks/CodeBlockBuilderResult.swift",
        "CodeBlocks/CodeBlockItemSyntax.Item.swift",
        "CodeBlocks/CommentedCodeBlock.swift",
        "CodeBlocks/EmptyCodeBlock.swift",
        "CodeBlocks/ExprCodeBlock.swift",
        "Collections/Array+LiteralValue.swift",
        "Collections/ArrayLiteral.swift",
        "Collections/CodeBlock+DictionaryValue.swift",
        "Collections/CodeBlockableLiteral.swift",
        "Collections/Dictionary+LiteralValue.swift",
        "Collections/DictionaryExpr.swift",
        "Collections/DictionaryLiteral.swift",
        "Collections/DictionaryValue.swift",
        "Collections/Literal+DictionaryValue.swift",
        "Collections/PatternCodeBlock.swift",
        "Collections/PatternConvertableCollection.swift",
        "Collections/Tuple.swift",
        "Collections/TupleAssignment+AsyncSet.swift",
        "Collections/TupleAssignment.swift",
        "Collections/TupleLiteralArray.swift",
        "Collections/TuplePattern.swift",
        "ControlFlow/Do.swift",
        "ControlFlow/For.swift",
        "ControlFlow/Guard.swift",
        "ControlFlow/If+Body.swift",
        "ControlFlow/If+CodeBlockItem.swift",
        "ControlFlow/If+Conditions.swift",
        "ControlFlow/If+ElseBody.swift",
        "ControlFlow/If.swift",
        "ControlFlow/Switch.swift",
        "ControlFlow/SwitchCase.swift",
        "ControlFlow/SwitchLet.swift",
        "ControlFlow/While.swift",
        "Core/AccessModifier.swift",
        "Core/CaptureReferenceType.swift",
        "Core/CodeBlock.swift",
        "Core/ExprCodeBlockBuilder.swift",
        "Core/Keyword+AccessModifier.swift",
        "Core/Keyword+CaptureReferenceType.swift",
        "Core/Line+Trivia.swift",
        "Core/Line.swift",
        "Core/PatternConvertible.swift",
        "Core/PatternConvertibleBuilder.swift",
        "Core/String+TypeRepresentable.swift",
        "Core/TypeRepresentable.swift",
        "Declarations/Class.swift",
        "Declarations/Enum.swift",
        "Declarations/Extension.swift",
        "Declarations/Import.swift",
        "Declarations/Init.swift",
        "Declarations/Protocol.swift",
        "Declarations/Struct+Public.swift",
        "Declarations/Struct.swift",
        "Declarations/TypeAlias.swift",
        "ErrorHandling/Catch.swift",
        "ErrorHandling/CatchBuilder.swift",
        "ErrorHandling/Throw.swift",
        "Expressions/Assignment.swift",
        "Expressions/Call.swift",
        "Expressions/CaptureInfo.swift",
        "Expressions/Closure+Body.swift",
        "Expressions/Closure+Capture.swift",
        "Expressions/Closure+Signature.swift",
        "Expressions/Closure.swift",
        "Expressions/ClosureParameter.swift",
        "Expressions/ClosureParameterBuilderResult.swift",
        "Expressions/ClosureType.swift",
        "Expressions/ConditionalOp.swift",
        "Expressions/FunctionCallExp.swift",
        "Expressions/Infix+Comparison.swift",
        "Expressions/Infix.swift",
        "Expressions/Literal+Convenience.swift",
        "Expressions/Literal+ExprCodeBlock.swift",
        "Expressions/Literal+PatternConvertible.swift",
        "Expressions/Literal.swift",
        "Expressions/LiteralValue.swift",
        "Expressions/NegatedPropertyAccessExp.swift",
        "Expressions/OptionalChainingExp.swift",
        "Expressions/PlusAssign.swift",
        "Expressions/PropertyAccessExp.swift",
        "Expressions/PropertyAccessible.swift",
        "Expressions/ReferenceExp.swift",
        "Expressions/Return.swift",
        "Functions/Function+EffectSpecifiers.swift",
        "Functions/Function+Effects.swift",
        "Functions/Function+Modifiers.swift",
        "Functions/Function+Syntax.swift",
        "Functions/Function.swift",
        "Functions/FunctionParameterSyntax+Init.swift",
        "Functions/FunctionRequirement.swift",
        "Parameters/Parameter.swift",
        "Parameters/ParameterBuilderResult.swift",
        "Parameters/ParameterExp.swift",
        "Parameters/ParameterExpBuilderResult.swift",
        "Parser/SourceRange.swift",
        "Parser/String+Extensions.swift",
        "Parser/String.swift",
        "Parser/StructureProperty.swift",
        "Parser/StructureValue.swift",
        "Parser/SyntaxParser.swift",
        "Parser/SyntaxResponse.swift",
        "Parser/SyntaxType.swift",
        "Parser/Token.swift",
        "Parser/TokenVisitor+Helpers.swift",
        "Parser/TokenVisitor.swift",
        "Parser/TreeNode.swift",
        "Patterns/Int+PatternConvertible.swift",
        "Patterns/LetBindingPattern.swift",
        "Patterns/Range+PatternConvertible.swift",
        "Patterns/String+PatternConvertible.swift",
        "Utilities/Break.swift",
        "Utilities/Case.swift",
        "Utilities/CodeBlock+Comment.swift",
        "Utilities/CodeBlockable.swift",
        "Utilities/CommentBuilderResult.swift",
        "Utilities/Continue.swift",
        "Utilities/Default.swift",
        "Utilities/EnumCase+Syntax.swift",
        "Utilities/EnumCase.swift",
        "Utilities/Fallthrough.swift",
        "Utilities/Group.swift",
        "Utilities/Let.swift",
        "Utilities/Parenthesized.swift",
        "Utilities/PropertyRequirement.swift",
        "Utilities/Then.swift",
        "Variables/AttributeArguments.swift",
        "Variables/ComputedProperty.swift",
        "Variables/Variable+Attributes.swift",
        "Variables/Variable+LiteralInitializers.swift",
        "Variables/Variable+Modifiers.swift",
        "Variables/Variable+TypedInitializers.swift",
        "Variables/Variable.swift",
        "Variables/VariableExp.swift",
        "Variables/VariableKind.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SyntaxDocTests",
      "module_type" : "SwiftTarget",
      "name" : "SyntaxDocTests",
      "path" : "Tests/SyntaxDocTests",
      "sources" : [
        "DocumentationExampleTests.swift",
        "DocumentationTestError.swift",
        "Settings.swift"
      ],
      "target_dependencies" : [
        "SyntaxKit",
        "DocumentationHarness"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DocumentationHarness",
      "module_type" : "SwiftTarget",
      "name" : "DocumentationHarness",
      "path" : "Sources/DocumentationHarness",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftOperators",
        "SwiftParser"
      ],
      "sources" : [
        "CodeBlock.swift",
        "CodeBlockExtraction.swift",
        "CodeBlockExtractor.swift",
        "CodeBlockExtractorError.swift",
        "CodeBlockType.swift",
        "CodeBlockValidationParameters.swift",
        "CodeSyntaxValidator.swift",
        "CompilationResult.swift",
        "DocumentationValidator.swift",
        "FileManager+Documentation.swift",
        "FileSearchError.swift",
        "FileSearcher.swift",
        "PackageValidator.swift",
        "SyntaxValidator.swift",
        "TestType.swift",
        "ValidationError.swift",
        "ValidationParameters.swift",
        "ValidationResult.swift",
        "Validator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.