Build Information
Failed to build OpenSwiftUI, reference main (51da57), with Swift 6.3 for macOS (SPM) on 28 Apr 2026 21:21:04 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
/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(
[1654/1699] 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(
[1655/1699] 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(
[1656/1699] 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(
[1657/1699] 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(
[1658/1699] 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(
[1659/1699] 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(
[1660/1699] 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(
[1661/1699] 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(
[1662/1699] 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(
[1663/1699] 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(
[1664/1699] 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(
[1665/1699] 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(
[1666/1699] 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(
[1667/1699] 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(
[1668/1699] 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(
[1669/1699] 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(
[1670/1699] 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(
[1671/1699] 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(
[1672/1699] 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(
[1673/1699] 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(
[1674/1699] 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(
[1675/1699] 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(
/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
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)
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: '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: '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)
BUILD FAILURE 6.3 macosSpm