The Swift Package Index logo.Swift Package Index

Build Information

Failed to build OpenSwiftUI, reference main (51da57), with Swift 6.2 for macOS (SPM) on 28 Apr 2026 21:20:00 UTC.

Build Command

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

Build Log

107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1290/1455] Compiling OpenSwiftUICore ConfigurationBasedResolvableStringAttribute.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1291/1455] Compiling OpenSwiftUICore ResolvableAbsoluteDate.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1292/1455] Compiling OpenSwiftUICore ResolvableStringAttribute.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1293/1455] Compiling OpenSwiftUICore ResolvedText.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1294/1455] Compiling OpenSwiftUICore Text+AlwaysOn.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1295/1455] Compiling OpenSwiftUICore Text+CLKTextProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1296/1455] Compiling OpenSwiftUICore Text+Concatenation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1297/1455] Compiling OpenSwiftUICore Text+Date.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1298/1455] Compiling OpenSwiftUICore Text+DiscreteFormatStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1299/1455] Compiling OpenSwiftUICore Text+Encapsulation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1300/1455] Compiling OpenSwiftUICore Text+Formatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1301/1455] Compiling OpenSwiftUICore Text+Justification.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1302/1455] Compiling OpenSwiftUICore Text+LayoutShape.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1303/1455] Compiling OpenSwiftUICore Text+LineHeight.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1304/1455] Compiling OpenSwiftUICore Text+Localized.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1305/1455] Compiling OpenSwiftUICore Text+NSAttributedString.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1306/1455] Compiling OpenSwiftUICore Text+PlatformRepresentation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1307/1455] Compiling OpenSwiftUICore Text+Renderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1308/1455] Compiling OpenSwiftUICore Text+SizeFitting.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1309/1455] Compiling OpenSwiftUICore Text+Sizing.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1310/1455] Compiling OpenSwiftUICore Text+Suffix.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
[1311/1455] Compiling OpenSwiftUICore Text+View.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:41: warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                         `- warning: immutable value 'lhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ConfigurationBasedResolvableStringAttribute.swift:54:78: warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 52 |                 self = .interval(delay: lhsDelay ?? rhsDelay)
 53 |             }
 54 |         case let (.wallClock(alignment: lhsAlignment), .wallClock(alignment: rhsAlignment)):
    |                                                                              `- warning: immutable value 'rhsAlignment' was never used; consider replacing with '_' or removing it [#no-usage]
 55 |             _openSwiftUIUnimplementedFailure()
 56 |         // WIP: handle other combinations
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Resolve/ResolvedText.swift:103:17: warning: variable 'string' was never mutated; consider changing to 'let' constant
101 |             isUniqueSizeVariant: Bool
102 |         ) where S: StringProtocol {
103 |             var string = String(string).caseConvertedIfNeeded(env)
    |                 `- warning: variable 'string' was never mutated; consider changing to 'let' constant
104 |             let attributes = style.nsAttributes(
105 |                 content: { string },
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+NSAttributedString.swift:66:16: warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 64 |         // container.properties = options
 65 |         resolve(into: &container, in: environment, with: options)
 66 |         if let attributedString = container.attributedString {
    |                `- warning: value 'attributedString' was defined but never used; consider replacing with boolean test [#no-usage]
 67 |             // attributedString.resolveUpdateSchedule(recalculate: true )
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:106:13: warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |         inputs: inout _GraphInputs
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
    |             `- warning: initialization of immutable value 'text' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:107:13: warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
105 |     ) {
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
    |             `- warning: initialization of immutable value 'referenceDate' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:108:13: warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
106 |         let text = Attribute(OptionalText(modifier: modifier.value))
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
    |             `- warning: initialization of immutable value 'archivedView' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
109 |         let interfaceIdiom = inputs.interfaceIdiom
110 |         // TODO: helper
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+Suffix.swift:109:13: warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |         let referenceDate = inputs.referenceDate
108 |         let archivedView = inputs.archivedView
109 |         let interfaceIdiom = inputs.interfaceIdiom
    |             `- warning: initialization of immutable value 'interfaceIdiom' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
110 |         // TODO: helper
111 |         _openSwiftUIUnimplementedFailure()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:25:17: warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  23 |         if let representation = inputs.requestedTextRepresentation,
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
     |                 `- warning: variable 'outputs' was never mutated; consider changing to 'let' constant
  26 |             let options = representation.representationOptions(inputs: inputs)
  27 |             _openSwiftUIUnimplementedWarning()
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:26:17: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  24 |            representation.shouldMakeRepresentation(inputs: inputs) {
  25 |             var outputs = makeCommonAttributes(view: view, inputs: inputs)
  26 |             let options = representation.representationOptions(inputs: inputs)
     |                 `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  27 |             _openSwiftUIUnimplementedWarning()
  28 |             return outputs
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:40:13: warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  38 |         var newInputs = inputs
  39 |         let allowsSelection = false // TODO: TextAllowsSelection
  40 |         let options = inputs.base.options
     |             `- warning: initialization of immutable value 'options' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
  41 |         let textRenderer = inputs.textRenderer
  42 |         var features: ResolvedProperties.Features = inputs.archivedView.isArchived ? [] : .useTextSuffix
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:10:9: warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
   8 |
   9 | package import Foundation
  10 | package import OpenAttributeGraphShims
     |         `- warning: package import of 'OpenAttributeGraphShims' was not used in package declarations
  11 | public import OpenCoreGraphicsShims
  12 | package import OpenRenderBoxShims
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUICore/View/Text/Text/Text+View.swift:82:13: warning: will never be executed
  79 |         newInputs.base.options.formUnion(.doNotScrape)
  80 |         var outputs: _ViewOutputs
  81 |         if allowsSelection {
     |            `- note: condition always evaluates to false
  82 |             _openSwiftUIUnimplementedFailure()
     |             `- warning: will never be executed
  83 |         } else {
  84 |             outputs = makeTextChildQuery(
warning: 'spi-builder-workspace': [Env] OPENSWIFTUI_BUILD_FOR_DARWIN_PLATFORM not set -> true(default)
[Env] SPI_GENERATE_DOCS not set -> false(default)
[Env] SPI_BUILD=1 -> true
[Env] OPENSWIFTUI_DEVELOPMENT not set -> false(default)
[Env] OPENSWIFTUI_WERROR not set -> false(default)
[Env] OPENSWIFTUI_TARGET_RELEASE not set -> 2024(default)
[Env] OPENSWIFTUI_LIBRARY_EVOLUTION not set -> true(default)
[Env] OPENSWIFTUI_COMPATIBILITY_TEST not set -> false(default)
[Env] OPENSWIFTUI_USE_LOCAL_DEPS not set -> false(default)
[Env] OPENSWIFTUI_OPENATTRIBUTESHIMS_COMPUTE not set -> false(default)
[Env] OPENSWIFTUI_OPENATTRIBUTESHIMS_DANCEUIGRAPH not set -> false(default)
[Env] OPENSWIFTUI_OPENATTRIBUTESHIMS_ATTRIBUTEGRAPH not set -> false(default)
[Env] OPENSWIFTUI_RENDERBOX not set -> false(default)
[Env] OPENSWIFTUI_ANY_ATTRIBUTE_FIX not set -> false(default)
[Env] OPENSWIFTUI_LINK_COREUI not set -> false(default)
[Env] OPENSWIFTUI_LINK_CORESVG not set -> false(default)
[Env] OPENSWIFTUI_LINK_SFSYMBOLS not set -> false(default)
[Env] OPENSWIFTUI_LINK_BACKLIGHTSERVICES not set -> false(default)
[Env] OPENSWIFTUI_LINK_TESTING not set -> false(default)
[Env] OPENSWIFTUI_SYMBOL_LOCATOR not set -> true(default)
[Env] OPENSWIFTUI_OPENCOMBINE not set -> false(default)
[Env] OPENSWIFTUI_SWIFT_LOG not set -> false(default)
[Env] OPENSWIFTUI_SWIFT_CRYPTO not set -> false(default)
[Env] OPENSWIFTUI_RENDER_GTK not set -> false(default)
[Env] OPENSWIFTUI_SWIFTUI_RENDER not set -> true(default)
[Env] OPENSWIFTUI_IGNORE_AVAILABILITY not set -> true(default)
[Env] OPENSWIFTUI_INTERNAL_XR_SDK not set -> false(default)
[Env] OPENSWIFTUI_ENABLE_PRIVATE_IMPORTS not set -> true(default)
[Env] OPENSWIFTUI_ENABLE_RUNTIME_CONCURRENCY_CHECK not set -> false(default)
[Env] OPENSWIFTUI_OPENSWIFTUI_BRIDGE_FRAMEWORK not set -> SwiftUI(default)
[Env] OPENSWIFTUI_SUPPORT_MULTI_PRODUCTS not set -> true(default)
[Env] OPENSWIFTUI_CF_CGTYPES not set -> true(default)
Fetching https://github.com/OpenSwiftUIProject/OpenCoreGraphics
[1/224] Fetching opencoregraphics
Fetched https://github.com/OpenSwiftUIProject/OpenCoreGraphics from cache (0.95s)
warning: 'opencoregraphics': [Env] OPENCOREGRAPHICS_BUILD_FOR_DARWIN_PLATFORM not set -> true(default)
[Env] OPENCOREGRAPHICS_DEVELOPMENT not set -> false(default)
[Env] OPENCOREGRAPHICS_COREGRAPHICS not set -> true(default)
[Env] OPENCOREGRAPHICS_WERROR not set -> false(default)
[Env] OPENCOREGRAPHICS_LIBRARY_EVOLUTION not set -> true(default)
Fetching https://github.com/OpenSwiftUIProject/OpenAttributeGraph
[1/9815] Fetching openattributegraph
Fetched https://github.com/OpenSwiftUIProject/OpenAttributeGraph from cache (1.14s)
warning: 'openattributegraph': [Env] OPENATTRIBUTEGRAPH_BUILD_FOR_DARWIN_PLATFORM not set -> true(default)
[Env] SPI_GENERATE_DOCS not set -> false(default)
[Env] SPI_BUILD=1 -> true
[Env] OPENATTRIBUTEGRAPH_DEVELOPMENT not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_WERROR not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_TARGET_RELEASE not set -> 2024(default)
[Env] OPENATTRIBUTEGRAPH_LIBRARY_EVOLUTION not set -> true(default)
[Env] OPENATTRIBUTEGRAPH_COMPATIBILITY_TEST not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_USE_LOCAL_DEPS not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_OPENATTRIBUTESHIMS_DANCEUIGRAPH not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_OPENATTRIBUTESHIMS_COMPUTE not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_OPENATTRIBUTESHIMS_ATTRIBUTEGRAPH not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_OPENATTRIBUTESHIMS_OAG_USE_BINARY not set -> false(default)
Fetching https://github.com/OpenSwiftUIProject/OpenRenderBox
[1/1499] Fetching openrenderbox
Fetched https://github.com/OpenSwiftUIProject/OpenRenderBox from cache (0.87s)
warning: 'openrenderbox': [Env] OPENRENDERBOX_BUILD_FOR_DARWIN_PLATFORM not set -> true(default)
[Env] SPI_GENERATE_DOCS not set -> false(default)
[Env] SPI_BUILD=1 -> true
[Env] OPENRENDERBOX_DEVELOPMENT not set -> false(default)
[Env] OPENRENDERBOX_TARGET_RELEASE not set -> 2024(default)
[Env] OPENRENDERBOX_LIBRARY_EVOLUTION not set -> true(default)
[Env] OPENRENDERBOX_COMPATIBILITY_TEST not set -> false(default)
[Env] OPENRENDERBOX_USE_LOCAL_DEPS not set -> false(default)
[Env] OPENRENDERBOX_RENDERBOX not set -> false(default)
[Env] OPENRENDERBOX_CF_CGTYPES not set -> true(default)
Fetching https://github.com/OpenSwiftUIProject/OpenObservation
[1/138] Fetching openobservation
Fetched https://github.com/OpenSwiftUIProject/OpenObservation from cache (0.72s)
warning: 'openobservation': [env] OPENSWIFTUI_BUILD_FOR_DARWIN_PLATFORM not set, using default: true
[env] OPENOBSERVATION_DEVELOPMENT not set, using default: false
[env] OPENSWIFTUI_SWIFT_TOOLCHAIN_SUPPORTED not set, using default: false
[env] OPENSWIFTUI_LIBRARY_EVOLUTION not set, using default: true
Fetching https://github.com/apple/swift-numerics
Fetching https://github.com/OpenSwiftUIProject/SymbolLocator.git
Fetching https://github.com/swiftlang/swift-syntax
[1/60] Fetching symbollocator
[61/6476] Fetching symbollocator, swift-numerics
Fetched https://github.com/apple/swift-numerics from cache (1.05s)
[1/75039] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax from cache (3.54s)
Fetched https://github.com/OpenSwiftUIProject/SymbolLocator.git from cache (3.54s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 601.0.1 (5.74s)
Computing version for https://github.com/OpenSwiftUIProject/SymbolLocator.git
Computed https://github.com/OpenSwiftUIProject/SymbolLocator.git at 0.2.1 (0.53s)
Computing version for https://github.com/apple/swift-numerics
Computed https://github.com/apple/swift-numerics at 1.1.1 (0.54s)
Creating working copy for https://github.com/OpenSwiftUIProject/OpenRenderBox
Working copy of https://github.com/OpenSwiftUIProject/OpenRenderBox resolved at main (7a963a0)
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 601.0.1
Creating working copy for https://github.com/OpenSwiftUIProject/SymbolLocator.git
Working copy of https://github.com/OpenSwiftUIProject/SymbolLocator.git resolved at 0.2.1
Creating working copy for https://github.com/OpenSwiftUIProject/OpenAttributeGraph
Working copy of https://github.com/OpenSwiftUIProject/OpenAttributeGraph resolved at main (f9b6763)
Creating working copy for https://github.com/OpenSwiftUIProject/OpenObservation
Working copy of https://github.com/OpenSwiftUIProject/OpenObservation resolved at main (05e0581)
Creating working copy for https://github.com/apple/swift-numerics
Working copy of https://github.com/apple/swift-numerics resolved at 1.1.1
Creating working copy for https://github.com/OpenSwiftUIProject/OpenCoreGraphics
Working copy of https://github.com/OpenSwiftUIProject/OpenCoreGraphics resolved at main (050239b)
warning: 'openrenderbox': [Env] OPENRENDERBOX_BUILD_FOR_DARWIN_PLATFORM not set -> true(default)
[Env] SPI_GENERATE_DOCS not set -> false(default)
[Env] SPI_BUILD=1 -> true
[Env] OPENRENDERBOX_DEVELOPMENT not set -> false(default)
[Env] OPENRENDERBOX_TARGET_RELEASE not set -> 2024(default)
[Env] OPENRENDERBOX_LIBRARY_EVOLUTION not set -> true(default)
[Env] OPENRENDERBOX_COMPATIBILITY_TEST not set -> false(default)
[Env] OPENRENDERBOX_USE_LOCAL_DEPS not set -> false(default)
[Env] OPENRENDERBOX_RENDERBOX not set -> false(default)
[Env] OPENRENDERBOX_CF_CGTYPES not set -> true(default)
warning: 'openobservation': [env] OPENSWIFTUI_BUILD_FOR_DARWIN_PLATFORM not set, using default: true
[env] OPENOBSERVATION_DEVELOPMENT not set, using default: false
[env] OPENSWIFTUI_SWIFT_TOOLCHAIN_SUPPORTED not set, using default: false
[env] OPENSWIFTUI_LIBRARY_EVOLUTION not set, using default: true
warning: 'opencoregraphics': [Env] OPENCOREGRAPHICS_BUILD_FOR_DARWIN_PLATFORM not set -> true(default)
[Env] OPENCOREGRAPHICS_DEVELOPMENT not set -> false(default)
[Env] OPENCOREGRAPHICS_COREGRAPHICS not set -> true(default)
[Env] OPENCOREGRAPHICS_WERROR not set -> false(default)
[Env] OPENCOREGRAPHICS_LIBRARY_EVOLUTION not set -> true(default)
warning: 'openattributegraph': [Env] OPENATTRIBUTEGRAPH_BUILD_FOR_DARWIN_PLATFORM not set -> true(default)
[Env] SPI_GENERATE_DOCS not set -> false(default)
[Env] SPI_BUILD=1 -> true
[Env] OPENATTRIBUTEGRAPH_DEVELOPMENT not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_WERROR not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_TARGET_RELEASE not set -> 2024(default)
[Env] OPENATTRIBUTEGRAPH_LIBRARY_EVOLUTION not set -> true(default)
[Env] OPENATTRIBUTEGRAPH_COMPATIBILITY_TEST not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_USE_LOCAL_DEPS not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_OPENATTRIBUTESHIMS_DANCEUIGRAPH not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_OPENATTRIBUTESHIMS_COMPUTE not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_OPENATTRIBUTESHIMS_ATTRIBUTEGRAPH not set -> false(default)
[Env] OPENATTRIBUTEGRAPH_OPENATTRIBUTESHIMS_OAG_USE_BINARY not set -> false(default)
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/601.0.1/swiftlang-6.2.4.1.4-MacroSupport-macos_aarch64.zip
Downloaded https://download.swift.org/prebuilts/swift-syntax/601.0.1/swiftlang-6.2.4.1.4-MacroSupport-macos_aarch64.zip (0.17s)
BUILD FAILURE 6.2 macosSpm