The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SwiftLI, reference main (e445c0), with Swift 6.1 for Wasm on 27 Feb 2026 23:31:57 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
[21/51] Wrapping AST for ArgumentParserToolInfo for debugging
[23/97] Compiling ArgumentParser CommandConfiguration.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:32: error: extra arguments at positions #3, #4 in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                `- error: extra arguments at positions #3, #4 in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:33: error: missing argument for parameter 'format' in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                 `- error: missing argument for parameter 'format' in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:74: error: value of optional type 'String?' must be unwrapped to a value of type 'String'
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                                                          |- error: value of optional type 'String?' must be unwrapped to a value of type 'String'
    |                                                                          |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                                                          `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 66 |     }
 67 |
[24/97] Compiling ArgumentParser CommandGroup.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:32: error: extra arguments at positions #3, #4 in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                `- error: extra arguments at positions #3, #4 in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:33: error: missing argument for parameter 'format' in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                 `- error: missing argument for parameter 'format' in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:74: error: value of optional type 'String?' must be unwrapped to a value of type 'String'
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                                                          |- error: value of optional type 'String?' must be unwrapped to a value of type 'String'
    |                                                                          |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                                                          `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 66 |     }
 67 |
[25/97] Compiling ArgumentParser EnumerableFlag.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:32: error: extra arguments at positions #3, #4 in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                `- error: extra arguments at positions #3, #4 in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:33: error: missing argument for parameter 'format' in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                 `- error: missing argument for parameter 'format' in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:74: error: value of optional type 'String?' must be unwrapped to a value of type 'String'
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                                                          |- error: value of optional type 'String?' must be unwrapped to a value of type 'String'
    |                                                                          |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                                                          `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 66 |     }
 67 |
[26/97] Compiling ArgumentParser ExpressibleByArgument.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:32: error: extra arguments at positions #3, #4 in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                `- error: extra arguments at positions #3, #4 in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:33: error: missing argument for parameter 'format' in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                 `- error: missing argument for parameter 'format' in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:74: error: value of optional type 'String?' must be unwrapped to a value of type 'String'
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                                                          |- error: value of optional type 'String?' must be unwrapped to a value of type 'String'
    |                                                                          |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                                                          `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 66 |     }
 67 |
[27/97] Compiling ArgumentParser Option.swift
[28/97] Compiling ArgumentParser OptionGroup.swift
[29/97] Compiling ArgumentParser ParentCommand.swift
[30/97] Compiling ArgumentParser AsyncParsableCommand.swift
[31/97] Compiling ArgumentParser UsageGenerator.swift
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:48:30: error: cannot find 'dup' in scope
 46 |             // Capture wrapped output, then re-emit with leading/trailing padding
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
    |                              `- error: cannot find 'dup' in scope
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 50 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:49:13: error: cannot find 'dup2' in scope
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 50 |
 51 |             wrapped.render()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:54:13: error: cannot find 'dup2' in scope
 52 |             fflush(stdout)
 53 |
 54 |             dup2(originalFd, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 55 |             close(originalFd)
 56 |             pipe.fileHandleForWriting.closeFile()
[32/97] Compiling ArgumentParser CollectionExtensions.swift
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:48:30: error: cannot find 'dup' in scope
 46 |             // Capture wrapped output, then re-emit with leading/trailing padding
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
    |                              `- error: cannot find 'dup' in scope
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 50 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:49:13: error: cannot find 'dup2' in scope
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 50 |
 51 |             wrapped.render()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:54:13: error: cannot find 'dup2' in scope
 52 |             fflush(stdout)
 53 |
 54 |             dup2(originalFd, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 55 |             close(originalFd)
 56 |             pipe.fileHandleForWriting.closeFile()
[33/97] Compiling ArgumentParser Foundation.swift
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:48:30: error: cannot find 'dup' in scope
 46 |             // Capture wrapped output, then re-emit with leading/trailing padding
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
    |                              `- error: cannot find 'dup' in scope
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 50 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:49:13: error: cannot find 'dup2' in scope
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 50 |
 51 |             wrapped.render()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:54:13: error: cannot find 'dup2' in scope
 52 |             fflush(stdout)
 53 |
 54 |             dup2(originalFd, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 55 |             close(originalFd)
 56 |             pipe.fileHandleForWriting.closeFile()
[34/97] Compiling ArgumentParser Mutex.swift
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:48:30: error: cannot find 'dup' in scope
 46 |             // Capture wrapped output, then re-emit with leading/trailing padding
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
    |                              `- error: cannot find 'dup' in scope
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 50 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:49:13: error: cannot find 'dup2' in scope
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 50 |
 51 |             wrapped.render()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:54:13: error: cannot find 'dup2' in scope
 52 |             fflush(stdout)
 53 |
 54 |             dup2(originalFd, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 55 |             close(originalFd)
 56 |             pipe.fileHandleForWriting.closeFile()
[35/97] Compiling ArgumentParser BashCompletionsGenerator.swift
[36/97] Compiling ArgumentParser CompletionsGenerator.swift
[37/97] Compiling ArgumentParser FishCompletionsGenerator.swift
[38/97] Compiling ArgumentParser ZshCompletionsGenerator.swift
[39/97] Compiling ArgumentParser Platform.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:18:41: error: type 'String' has no member 'LocalizationValue'
16 |     /// - Parameter value: The string to use as a localization key.
17 |     public init(_ value: String) {
18 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
19 |     }
20 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:24:41: error: type 'String' has no member 'LocalizationValue'
22 | extension LocalizedStringKey: ExpressibleByExtendedGraphemeClusterLiteral {
23 |     public init(extendedGraphemeClusterLiteral value: String) {
24 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:38:41: error: type 'String' has no member 'LocalizationValue'
36 | extension LocalizedStringKey: ExpressibleByUnicodeScalarLiteral {
37 |     public init(unicodeScalarLiteral value: UnicodeScalar) {
38 |         self.localizationValue = String.LocalizationValue(String(value))
   |                                         `- error: type 'String' has no member 'LocalizationValue'
39 |     }
40 | }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:73:31: error: 'current' is unavailable: RunLoop is not available on WASI
 71 |         performRender()
 72 |
 73 |         let runLoop = RunLoop.current
    |                               `- error: 'current' is unavailable: RunLoop is not available on WASI
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
Foundation.RunLoop.current:3:18: note: 'current' has been explicitly marked unavailable here
1 | class RunLoop {
2 | @available(*, unavailable, message: "RunLoop is not available on WASI")
3 |   open class var current: RunLoop { get }}
  |                  `- note: 'current' has been explicitly marked unavailable here
4 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:21: error: value of type 'RunLoop' has no member 'run'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                     `- error: value of type 'RunLoop' has no member 'run'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:32: error: cannot infer contextual base in reference to member 'default'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                                `- error: cannot infer contextual base in reference to member 'default'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:97:9: error: cannot find 'DispatchQueue' in scope
 95 |
 96 |         // Dispatch to main so renders are serialized with timer callbacks.
 97 |         DispatchQueue.main.async { [weak self] in
    |         `- error: cannot find 'DispatchQueue' in scope
 98 |             self?.coalescedRender()
 99 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |             `- error: cannot find 'DispatchQueue' in scope
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:54: error: cannot call value of non-function type 'Date'
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |                                                      `- error: cannot call value of non-function type 'Date'
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:9: error: cannot find 'signal' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |         `- error: cannot find 'signal' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:16: error: cannot find 'SIGINT' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |                `- error: cannot find 'SIGINT' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:9: error: cannot find 'signal' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |         `- error: cannot find 'signal' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:16: error: cannot find 'SIGWINCH' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |                `- error: cannot find 'SIGWINCH' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
[40/97] Compiling ArgumentParser SequenceExtensions.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:18:41: error: type 'String' has no member 'LocalizationValue'
16 |     /// - Parameter value: The string to use as a localization key.
17 |     public init(_ value: String) {
18 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
19 |     }
20 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:24:41: error: type 'String' has no member 'LocalizationValue'
22 | extension LocalizedStringKey: ExpressibleByExtendedGraphemeClusterLiteral {
23 |     public init(extendedGraphemeClusterLiteral value: String) {
24 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:38:41: error: type 'String' has no member 'LocalizationValue'
36 | extension LocalizedStringKey: ExpressibleByUnicodeScalarLiteral {
37 |     public init(unicodeScalarLiteral value: UnicodeScalar) {
38 |         self.localizationValue = String.LocalizationValue(String(value))
   |                                         `- error: type 'String' has no member 'LocalizationValue'
39 |     }
40 | }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:73:31: error: 'current' is unavailable: RunLoop is not available on WASI
 71 |         performRender()
 72 |
 73 |         let runLoop = RunLoop.current
    |                               `- error: 'current' is unavailable: RunLoop is not available on WASI
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
Foundation.RunLoop.current:3:18: note: 'current' has been explicitly marked unavailable here
1 | class RunLoop {
2 | @available(*, unavailable, message: "RunLoop is not available on WASI")
3 |   open class var current: RunLoop { get }}
  |                  `- note: 'current' has been explicitly marked unavailable here
4 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:21: error: value of type 'RunLoop' has no member 'run'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                     `- error: value of type 'RunLoop' has no member 'run'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:32: error: cannot infer contextual base in reference to member 'default'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                                `- error: cannot infer contextual base in reference to member 'default'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:97:9: error: cannot find 'DispatchQueue' in scope
 95 |
 96 |         // Dispatch to main so renders are serialized with timer callbacks.
 97 |         DispatchQueue.main.async { [weak self] in
    |         `- error: cannot find 'DispatchQueue' in scope
 98 |             self?.coalescedRender()
 99 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |             `- error: cannot find 'DispatchQueue' in scope
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:54: error: cannot call value of non-function type 'Date'
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |                                                      `- error: cannot call value of non-function type 'Date'
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:9: error: cannot find 'signal' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |         `- error: cannot find 'signal' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:16: error: cannot find 'SIGINT' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |                `- error: cannot find 'SIGINT' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:9: error: cannot find 'signal' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |         `- error: cannot find 'signal' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:16: error: cannot find 'SIGWINCH' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |                `- error: cannot find 'SIGWINCH' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
[41/97] Compiling ArgumentParser StringExtensions.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:18:41: error: type 'String' has no member 'LocalizationValue'
16 |     /// - Parameter value: The string to use as a localization key.
17 |     public init(_ value: String) {
18 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
19 |     }
20 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:24:41: error: type 'String' has no member 'LocalizationValue'
22 | extension LocalizedStringKey: ExpressibleByExtendedGraphemeClusterLiteral {
23 |     public init(extendedGraphemeClusterLiteral value: String) {
24 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:38:41: error: type 'String' has no member 'LocalizationValue'
36 | extension LocalizedStringKey: ExpressibleByUnicodeScalarLiteral {
37 |     public init(unicodeScalarLiteral value: UnicodeScalar) {
38 |         self.localizationValue = String.LocalizationValue(String(value))
   |                                         `- error: type 'String' has no member 'LocalizationValue'
39 |     }
40 | }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:73:31: error: 'current' is unavailable: RunLoop is not available on WASI
 71 |         performRender()
 72 |
 73 |         let runLoop = RunLoop.current
    |                               `- error: 'current' is unavailable: RunLoop is not available on WASI
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
Foundation.RunLoop.current:3:18: note: 'current' has been explicitly marked unavailable here
1 | class RunLoop {
2 | @available(*, unavailable, message: "RunLoop is not available on WASI")
3 |   open class var current: RunLoop { get }}
  |                  `- note: 'current' has been explicitly marked unavailable here
4 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:21: error: value of type 'RunLoop' has no member 'run'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                     `- error: value of type 'RunLoop' has no member 'run'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:32: error: cannot infer contextual base in reference to member 'default'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                                `- error: cannot infer contextual base in reference to member 'default'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:97:9: error: cannot find 'DispatchQueue' in scope
 95 |
 96 |         // Dispatch to main so renders are serialized with timer callbacks.
 97 |         DispatchQueue.main.async { [weak self] in
    |         `- error: cannot find 'DispatchQueue' in scope
 98 |             self?.coalescedRender()
 99 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |             `- error: cannot find 'DispatchQueue' in scope
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:54: error: cannot call value of non-function type 'Date'
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |                                                      `- error: cannot call value of non-function type 'Date'
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:9: error: cannot find 'signal' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |         `- error: cannot find 'signal' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:16: error: cannot find 'SIGINT' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |                `- error: cannot find 'SIGINT' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:9: error: cannot find 'signal' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |         `- error: cannot find 'signal' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:16: error: cannot find 'SIGWINCH' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |                `- error: cannot find 'SIGWINCH' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
[42/97] Compiling ArgumentParser SwiftExtensions.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:18:41: error: type 'String' has no member 'LocalizationValue'
16 |     /// - Parameter value: The string to use as a localization key.
17 |     public init(_ value: String) {
18 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
19 |     }
20 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:24:41: error: type 'String' has no member 'LocalizationValue'
22 | extension LocalizedStringKey: ExpressibleByExtendedGraphemeClusterLiteral {
23 |     public init(extendedGraphemeClusterLiteral value: String) {
24 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:38:41: error: type 'String' has no member 'LocalizationValue'
36 | extension LocalizedStringKey: ExpressibleByUnicodeScalarLiteral {
37 |     public init(unicodeScalarLiteral value: UnicodeScalar) {
38 |         self.localizationValue = String.LocalizationValue(String(value))
   |                                         `- error: type 'String' has no member 'LocalizationValue'
39 |     }
40 | }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:73:31: error: 'current' is unavailable: RunLoop is not available on WASI
 71 |         performRender()
 72 |
 73 |         let runLoop = RunLoop.current
    |                               `- error: 'current' is unavailable: RunLoop is not available on WASI
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
Foundation.RunLoop.current:3:18: note: 'current' has been explicitly marked unavailable here
1 | class RunLoop {
2 | @available(*, unavailable, message: "RunLoop is not available on WASI")
3 |   open class var current: RunLoop { get }}
  |                  `- note: 'current' has been explicitly marked unavailable here
4 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:21: error: value of type 'RunLoop' has no member 'run'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                     `- error: value of type 'RunLoop' has no member 'run'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:32: error: cannot infer contextual base in reference to member 'default'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                                `- error: cannot infer contextual base in reference to member 'default'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:97:9: error: cannot find 'DispatchQueue' in scope
 95 |
 96 |         // Dispatch to main so renders are serialized with timer callbacks.
 97 |         DispatchQueue.main.async { [weak self] in
    |         `- error: cannot find 'DispatchQueue' in scope
 98 |             self?.coalescedRender()
 99 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |             `- error: cannot find 'DispatchQueue' in scope
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:54: error: cannot call value of non-function type 'Date'
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |                                                      `- error: cannot call value of non-function type 'Date'
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:9: error: cannot find 'signal' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |         `- error: cannot find 'signal' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:16: error: cannot find 'SIGINT' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |                `- error: cannot find 'SIGINT' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:9: error: cannot find 'signal' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |         `- error: cannot find 'signal' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:16: error: cannot find 'SIGWINCH' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |                `- error: cannot find 'SIGWINCH' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
[43/97] Compiling ArgumentParser CompletionKind.swift
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:65:25: error: cannot find 'DispatchSource' in scope
63 |     public func start(action: @escaping @Sendable () -> Void) {
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
   |                         `- error: cannot find 'DispatchSource' in scope
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
67 |         newSource.setEventHandler(handler: action)
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:66:39: error: cannot call value of non-function type 'Date'
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
   |                                       `- error: cannot call value of non-function type 'Date'
67 |         newSource.setEventHandler(handler: action)
68 |         newSource.resume()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:84:26: error: cannot find 'dup' in scope
 82 |         // Redirect stdout to a pipe so we can count lines
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
    |                          `- error: cannot find 'dup' in scope
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 86 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:85:9: error: cannot find 'dup2' in scope
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 86 |
 87 |         view.render()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:91:9: error: cannot find 'dup2' in scope
 89 |
 90 |         // Restore stdout
 91 |         dup2(originalFd, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 92 |         close(originalFd)
 93 |         pipe.fileHandleForWriting.closeFile()
[44/97] Compiling ArgumentParser Errors.swift
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:65:25: error: cannot find 'DispatchSource' in scope
63 |     public func start(action: @escaping @Sendable () -> Void) {
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
   |                         `- error: cannot find 'DispatchSource' in scope
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
67 |         newSource.setEventHandler(handler: action)
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:66:39: error: cannot call value of non-function type 'Date'
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
   |                                       `- error: cannot call value of non-function type 'Date'
67 |         newSource.setEventHandler(handler: action)
68 |         newSource.resume()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:84:26: error: cannot find 'dup' in scope
 82 |         // Redirect stdout to a pipe so we can count lines
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
    |                          `- error: cannot find 'dup' in scope
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 86 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:85:9: error: cannot find 'dup2' in scope
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 86 |
 87 |         view.render()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:91:9: error: cannot find 'dup2' in scope
 89 |
 90 |         // Restore stdout
 91 |         dup2(originalFd, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 92 |         close(originalFd)
 93 |         pipe.fileHandleForWriting.closeFile()
[45/97] Compiling ArgumentParser Flag.swift
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:65:25: error: cannot find 'DispatchSource' in scope
63 |     public func start(action: @escaping @Sendable () -> Void) {
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
   |                         `- error: cannot find 'DispatchSource' in scope
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
67 |         newSource.setEventHandler(handler: action)
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:66:39: error: cannot call value of non-function type 'Date'
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
   |                                       `- error: cannot call value of non-function type 'Date'
67 |         newSource.setEventHandler(handler: action)
68 |         newSource.resume()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:84:26: error: cannot find 'dup' in scope
 82 |         // Redirect stdout to a pipe so we can count lines
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
    |                          `- error: cannot find 'dup' in scope
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 86 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:85:9: error: cannot find 'dup2' in scope
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 86 |
 87 |         view.render()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:91:9: error: cannot find 'dup2' in scope
 89 |
 90 |         // Restore stdout
 91 |         dup2(originalFd, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 92 |         close(originalFd)
 93 |         pipe.fileHandleForWriting.closeFile()
[46/97] Compiling ArgumentParser NameSpecification.swift
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:65:25: error: cannot find 'DispatchSource' in scope
63 |     public func start(action: @escaping @Sendable () -> Void) {
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
   |                         `- error: cannot find 'DispatchSource' in scope
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
67 |         newSource.setEventHandler(handler: action)
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:66:39: error: cannot call value of non-function type 'Date'
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
   |                                       `- error: cannot call value of non-function type 'Date'
67 |         newSource.setEventHandler(handler: action)
68 |         newSource.resume()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:84:26: error: cannot find 'dup' in scope
 82 |         // Redirect stdout to a pipe so we can count lines
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
    |                          `- error: cannot find 'dup' in scope
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 86 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:85:9: error: cannot find 'dup2' in scope
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 86 |
 87 |         view.render()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:91:9: error: cannot find 'dup2' in scope
 89 |
 90 |         // Restore stdout
 91 |         dup2(originalFd, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 92 |         close(originalFd)
 93 |         pipe.fileHandleForWriting.closeFile()
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:58b971189c4d3c564696bb40c86e07506670ed096ab7351a005c7c449525017a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
[3/3] Compiling plugin GenerateManual
[4/4] Compiling plugin GenerateDoccReference
Building for debugging...
[4/11] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/42] Emitting module SwiftLI
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
[7/46] Compiling SwiftLI LifecycleModifier.swift
[8/46] Compiling SwiftLI State.swift
[9/46] Compiling SwiftLI TerminalRenderer.swift
[10/46] Compiling SwiftLI ViewableCommand.swift
[11/46] Compiling SwiftLI CLIApp.swift
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:65:25: error: cannot find 'DispatchSource' in scope
63 |     public func start(action: @escaping @Sendable () -> Void) {
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
   |                         `- error: cannot find 'DispatchSource' in scope
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
67 |         newSource.setEventHandler(handler: action)
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:66:39: error: cannot call value of non-function type 'Date'
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
   |                                       `- error: cannot call value of non-function type 'Date'
67 |         newSource.setEventHandler(handler: action)
68 |         newSource.resume()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:84:26: error: cannot find 'dup' in scope
 82 |         // Redirect stdout to a pipe so we can count lines
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
    |                          `- error: cannot find 'dup' in scope
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 86 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:85:9: error: cannot find 'dup2' in scope
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 86 |
 87 |         view.render()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:91:9: error: cannot find 'dup2' in scope
 89 |
 90 |         // Restore stdout
 91 |         dup2(originalFd, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 92 |         close(originalFd)
 93 |         pipe.fileHandleForWriting.closeFile()
[12/46] Compiling SwiftLI CLITimer.swift
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:65:25: error: cannot find 'DispatchSource' in scope
63 |     public func start(action: @escaping @Sendable () -> Void) {
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
   |                         `- error: cannot find 'DispatchSource' in scope
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
67 |         newSource.setEventHandler(handler: action)
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:66:39: error: cannot call value of non-function type 'Date'
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
   |                                       `- error: cannot call value of non-function type 'Date'
67 |         newSource.setEventHandler(handler: action)
68 |         newSource.resume()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:84:26: error: cannot find 'dup' in scope
 82 |         // Redirect stdout to a pipe so we can count lines
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
    |                          `- error: cannot find 'dup' in scope
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 86 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:85:9: error: cannot find 'dup2' in scope
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 86 |
 87 |         view.render()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:91:9: error: cannot find 'dup2' in scope
 89 |
 90 |         // Restore stdout
 91 |         dup2(originalFd, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 92 |         close(originalFd)
 93 |         pipe.fileHandleForWriting.closeFile()
[13/46] Compiling SwiftLI CommandState.swift
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:65:25: error: cannot find 'DispatchSource' in scope
63 |     public func start(action: @escaping @Sendable () -> Void) {
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
   |                         `- error: cannot find 'DispatchSource' in scope
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
67 |         newSource.setEventHandler(handler: action)
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:66:39: error: cannot call value of non-function type 'Date'
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
   |                                       `- error: cannot call value of non-function type 'Date'
67 |         newSource.setEventHandler(handler: action)
68 |         newSource.resume()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:84:26: error: cannot find 'dup' in scope
 82 |         // Redirect stdout to a pipe so we can count lines
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
    |                          `- error: cannot find 'dup' in scope
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 86 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:85:9: error: cannot find 'dup2' in scope
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 86 |
 87 |         view.render()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:91:9: error: cannot find 'dup2' in scope
 89 |
 90 |         // Restore stdout
 91 |         dup2(originalFd, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 92 |         close(originalFd)
 93 |         pipe.fileHandleForWriting.closeFile()
[14/46] Compiling SwiftLI InlineRenderer.swift
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:42:25: error: cannot find type 'DispatchSourceTimer' in scope
40 | ///   are naturally serialized without additional locking.
41 | public final class CLITimer: @unchecked Sendable {
42 |     private var source: DispatchSourceTimer?
   |                         `- error: cannot find type 'DispatchSourceTimer' in scope
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:44:24: error: cannot find type 'DispatchQueue' in scope
42 |     private var source: DispatchSourceTimer?
43 |     private let interval: TimeInterval
44 |     private let queue: DispatchQueue
   |                        `- error: cannot find type 'DispatchQueue' in scope
45 |     private let lock = NSLock()
46 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:52:48: error: cannot find type 'DispatchQueue' in scope
50 |     ///   - queue: The dispatch queue on which `action` is called.
51 |     ///     Defaults to `.main`.
52 |     public init(interval: TimeInterval, queue: DispatchQueue = .main) {
   |                                                `- error: cannot find type 'DispatchQueue' in scope
53 |         self.interval = interval
54 |         self.queue = queue
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:65:25: error: cannot find 'DispatchSource' in scope
63 |     public func start(action: @escaping @Sendable () -> Void) {
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
   |                         `- error: cannot find 'DispatchSource' in scope
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
67 |         newSource.setEventHandler(handler: action)
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/CLITimer.swift:66:39: error: cannot call value of non-function type 'Date'
64 |         stop()
65 |         let newSource = DispatchSource.makeTimerSource(queue: queue)
66 |         newSource.schedule(deadline: .now() + interval, repeating: interval)
   |                                       `- error: cannot call value of non-function type 'Date'
67 |         newSource.setEventHandler(handler: action)
68 |         newSource.resume()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:84:26: error: cannot find 'dup' in scope
 82 |         // Redirect stdout to a pipe so we can count lines
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
    |                          `- error: cannot find 'dup' in scope
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 86 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:85:9: error: cannot find 'dup2' in scope
 83 |         let pipe = Pipe()
 84 |         let originalFd = dup(STDOUT_FILENO)
 85 |         dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 86 |
 87 |         view.render()
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/InlineRenderer.swift:91:9: error: cannot find 'dup2' in scope
 89 |
 90 |         // Restore stdout
 91 |         dup2(originalFd, STDOUT_FILENO)
    |         `- error: cannot find 'dup2' in scope
 92 |         close(originalFd)
 93 |         pipe.fileHandleForWriting.closeFile()
[15/46] Compiling SwiftLI VStack.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:18:41: error: type 'String' has no member 'LocalizationValue'
16 |     /// - Parameter value: The string to use as a localization key.
17 |     public init(_ value: String) {
18 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
19 |     }
20 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:24:41: error: type 'String' has no member 'LocalizationValue'
22 | extension LocalizedStringKey: ExpressibleByExtendedGraphemeClusterLiteral {
23 |     public init(extendedGraphemeClusterLiteral value: String) {
24 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:38:41: error: type 'String' has no member 'LocalizationValue'
36 | extension LocalizedStringKey: ExpressibleByUnicodeScalarLiteral {
37 |     public init(unicodeScalarLiteral value: UnicodeScalar) {
38 |         self.localizationValue = String.LocalizationValue(String(value))
   |                                         `- error: type 'String' has no member 'LocalizationValue'
39 |     }
40 | }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:73:31: error: 'current' is unavailable: RunLoop is not available on WASI
 71 |         performRender()
 72 |
 73 |         let runLoop = RunLoop.current
    |                               `- error: 'current' is unavailable: RunLoop is not available on WASI
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
Foundation.RunLoop.current:3:18: note: 'current' has been explicitly marked unavailable here
1 | class RunLoop {
2 | @available(*, unavailable, message: "RunLoop is not available on WASI")
3 |   open class var current: RunLoop { get }}
  |                  `- note: 'current' has been explicitly marked unavailable here
4 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:21: error: value of type 'RunLoop' has no member 'run'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                     `- error: value of type 'RunLoop' has no member 'run'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:32: error: cannot infer contextual base in reference to member 'default'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                                `- error: cannot infer contextual base in reference to member 'default'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:97:9: error: cannot find 'DispatchQueue' in scope
 95 |
 96 |         // Dispatch to main so renders are serialized with timer callbacks.
 97 |         DispatchQueue.main.async { [weak self] in
    |         `- error: cannot find 'DispatchQueue' in scope
 98 |             self?.coalescedRender()
 99 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |             `- error: cannot find 'DispatchQueue' in scope
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:54: error: cannot call value of non-function type 'Date'
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |                                                      `- error: cannot call value of non-function type 'Date'
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:9: error: cannot find 'signal' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |         `- error: cannot find 'signal' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:16: error: cannot find 'SIGINT' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |                `- error: cannot find 'SIGINT' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:9: error: cannot find 'signal' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |         `- error: cannot find 'signal' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:16: error: cannot find 'SIGWINCH' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |                `- error: cannot find 'SIGWINCH' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
[16/46] Compiling SwiftLI LocalizedStringKey.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:18:41: error: type 'String' has no member 'LocalizationValue'
16 |     /// - Parameter value: The string to use as a localization key.
17 |     public init(_ value: String) {
18 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
19 |     }
20 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:24:41: error: type 'String' has no member 'LocalizationValue'
22 | extension LocalizedStringKey: ExpressibleByExtendedGraphemeClusterLiteral {
23 |     public init(extendedGraphemeClusterLiteral value: String) {
24 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:38:41: error: type 'String' has no member 'LocalizationValue'
36 | extension LocalizedStringKey: ExpressibleByUnicodeScalarLiteral {
37 |     public init(unicodeScalarLiteral value: UnicodeScalar) {
38 |         self.localizationValue = String.LocalizationValue(String(value))
   |                                         `- error: type 'String' has no member 'LocalizationValue'
39 |     }
40 | }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:73:31: error: 'current' is unavailable: RunLoop is not available on WASI
 71 |         performRender()
 72 |
 73 |         let runLoop = RunLoop.current
    |                               `- error: 'current' is unavailable: RunLoop is not available on WASI
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
Foundation.RunLoop.current:3:18: note: 'current' has been explicitly marked unavailable here
1 | class RunLoop {
2 | @available(*, unavailable, message: "RunLoop is not available on WASI")
3 |   open class var current: RunLoop { get }}
  |                  `- note: 'current' has been explicitly marked unavailable here
4 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:21: error: value of type 'RunLoop' has no member 'run'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                     `- error: value of type 'RunLoop' has no member 'run'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:32: error: cannot infer contextual base in reference to member 'default'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                                `- error: cannot infer contextual base in reference to member 'default'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:97:9: error: cannot find 'DispatchQueue' in scope
 95 |
 96 |         // Dispatch to main so renders are serialized with timer callbacks.
 97 |         DispatchQueue.main.async { [weak self] in
    |         `- error: cannot find 'DispatchQueue' in scope
 98 |             self?.coalescedRender()
 99 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |             `- error: cannot find 'DispatchQueue' in scope
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:54: error: cannot call value of non-function type 'Date'
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |                                                      `- error: cannot call value of non-function type 'Date'
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:9: error: cannot find 'signal' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |         `- error: cannot find 'signal' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:16: error: cannot find 'SIGINT' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |                `- error: cannot find 'SIGINT' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:9: error: cannot find 'signal' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |         `- error: cannot find 'signal' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:16: error: cannot find 'SIGWINCH' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |                `- error: cannot find 'SIGWINCH' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
[17/46] Compiling SwiftLI AppRuntime.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:18:41: error: type 'String' has no member 'LocalizationValue'
16 |     /// - Parameter value: The string to use as a localization key.
17 |     public init(_ value: String) {
18 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
19 |     }
20 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:24:41: error: type 'String' has no member 'LocalizationValue'
22 | extension LocalizedStringKey: ExpressibleByExtendedGraphemeClusterLiteral {
23 |     public init(extendedGraphemeClusterLiteral value: String) {
24 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:38:41: error: type 'String' has no member 'LocalizationValue'
36 | extension LocalizedStringKey: ExpressibleByUnicodeScalarLiteral {
37 |     public init(unicodeScalarLiteral value: UnicodeScalar) {
38 |         self.localizationValue = String.LocalizationValue(String(value))
   |                                         `- error: type 'String' has no member 'LocalizationValue'
39 |     }
40 | }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:73:31: error: 'current' is unavailable: RunLoop is not available on WASI
 71 |         performRender()
 72 |
 73 |         let runLoop = RunLoop.current
    |                               `- error: 'current' is unavailable: RunLoop is not available on WASI
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
Foundation.RunLoop.current:3:18: note: 'current' has been explicitly marked unavailable here
1 | class RunLoop {
2 | @available(*, unavailable, message: "RunLoop is not available on WASI")
3 |   open class var current: RunLoop { get }}
  |                  `- note: 'current' has been explicitly marked unavailable here
4 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:21: error: value of type 'RunLoop' has no member 'run'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                     `- error: value of type 'RunLoop' has no member 'run'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:32: error: cannot infer contextual base in reference to member 'default'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                                `- error: cannot infer contextual base in reference to member 'default'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:97:9: error: cannot find 'DispatchQueue' in scope
 95 |
 96 |         // Dispatch to main so renders are serialized with timer callbacks.
 97 |         DispatchQueue.main.async { [weak self] in
    |         `- error: cannot find 'DispatchQueue' in scope
 98 |             self?.coalescedRender()
 99 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |             `- error: cannot find 'DispatchQueue' in scope
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:54: error: cannot call value of non-function type 'Date'
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |                                                      `- error: cannot call value of non-function type 'Date'
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:9: error: cannot find 'signal' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |         `- error: cannot find 'signal' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:16: error: cannot find 'SIGINT' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |                `- error: cannot find 'SIGINT' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:9: error: cannot find 'signal' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |         `- error: cannot find 'signal' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:16: error: cannot find 'SIGWINCH' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |                `- error: cannot find 'SIGWINCH' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
[18/46] Compiling SwiftLI Binding.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:12:15: error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
10 | /// The key used to look up an entry in a strings file or strings dictionary file.
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
   |               |- error: type 'LocalizedStringKey' does not conform to protocol 'Equatable'
   |               `- note: add stubs for conformance
13 |     var localizationValue: String.LocalizationValue
   |         `- note: stored property type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'LocalizedStringKey' to 'Equatable'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.==:1:24: note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'LocalizedStringKey' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'LocalizedStringKey' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'LocalizedStringKey' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(LocalizedStringKey, LocalizedStringKey) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:18:41: error: type 'String' has no member 'LocalizationValue'
16 |     /// - Parameter value: The string to use as a localization key.
17 |     public init(_ value: String) {
18 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
19 |     }
20 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:24:41: error: type 'String' has no member 'LocalizationValue'
22 | extension LocalizedStringKey: ExpressibleByExtendedGraphemeClusterLiteral {
23 |     public init(extendedGraphemeClusterLiteral value: String) {
24 |         self.localizationValue = String.LocalizationValue(value)
   |                                         `- error: type 'String' has no member 'LocalizationValue'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:38:41: error: type 'String' has no member 'LocalizationValue'
36 | extension LocalizedStringKey: ExpressibleByUnicodeScalarLiteral {
37 |     public init(unicodeScalarLiteral value: UnicodeScalar) {
38 |         self.localizationValue = String.LocalizationValue(String(value))
   |                                         `- error: type 'String' has no member 'LocalizationValue'
39 |     }
40 | }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:73:31: error: 'current' is unavailable: RunLoop is not available on WASI
 71 |         performRender()
 72 |
 73 |         let runLoop = RunLoop.current
    |                               `- error: 'current' is unavailable: RunLoop is not available on WASI
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
Foundation.RunLoop.current:3:18: note: 'current' has been explicitly marked unavailable here
1 | class RunLoop {
2 | @available(*, unavailable, message: "RunLoop is not available on WASI")
3 |   open class var current: RunLoop { get }}
  |                  `- note: 'current' has been explicitly marked unavailable here
4 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:21: error: value of type 'RunLoop' has no member 'run'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                     `- error: value of type 'RunLoop' has no member 'run'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:76:32: error: cannot infer contextual base in reference to member 'default'
 74 |         while isRunning {
 75 |             // 100ms timeout keeps the loop responsive to signal-driven stops
 76 |             runLoop.run(mode: .default, before: Date(timeIntervalSinceNow: 0.1))
    |                                `- error: cannot infer contextual base in reference to member 'default'
 77 |         }
 78 |
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:97:9: error: cannot find 'DispatchQueue' in scope
 95 |
 96 |         // Dispatch to main so renders are serialized with timer callbacks.
 97 |         DispatchQueue.main.async { [weak self] in
    |         `- error: cannot find 'DispatchQueue' in scope
 98 |             self?.coalescedRender()
 99 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |             `- error: cannot find 'DispatchQueue' in scope
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:122:54: error: cannot call value of non-function type 'Date'
120 |             // Too soon — try again after the remaining interval.
121 |             let delay = minRenderInterval - elapsed
122 |             DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
    |                                                      `- error: cannot call value of non-function type 'Date'
123 |                 self?.performRender()
124 |             }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:9: error: cannot find 'signal' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |         `- error: cannot find 'signal' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:140:16: error: cannot find 'SIGINT' in scope
138 |     private func setupSignalHandlers() {
139 |         // Ctrl+C: stop the run loop gracefully
140 |         signal(SIGINT) { _ in
    |                `- error: cannot find 'SIGINT' in scope
141 |             AppRuntime.shared?.stop()
142 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:9: error: cannot find 'signal' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |         `- error: cannot find 'signal' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
/host/spi-builder-workspace/Sources/SwiftLI/Reactive/AppRuntime.swift:144:16: error: cannot find 'SIGWINCH' in scope
142 |         }
143 |         // Terminal resize: re-render at new dimensions
144 |         signal(SIGWINCH) { _ in
    |                `- error: cannot find 'SIGWINCH' in scope
145 |             AppRuntime.shared?.scheduleRender()
146 |         }
[19/46] Compiling SwiftLI Padding.swift
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:48:30: error: cannot find 'dup' in scope
 46 |             // Capture wrapped output, then re-emit with leading/trailing padding
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
    |                              `- error: cannot find 'dup' in scope
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 50 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:49:13: error: cannot find 'dup2' in scope
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 50 |
 51 |             wrapped.render()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:54:13: error: cannot find 'dup2' in scope
 52 |             fflush(stdout)
 53 |
 54 |             dup2(originalFd, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 55 |             close(originalFd)
 56 |             pipe.fileHandleForWriting.closeFile()
[20/46] Compiling SwiftLI Spacer.swift
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:48:30: error: cannot find 'dup' in scope
 46 |             // Capture wrapped output, then re-emit with leading/trailing padding
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
    |                              `- error: cannot find 'dup' in scope
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 50 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:49:13: error: cannot find 'dup2' in scope
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 50 |
 51 |             wrapped.render()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:54:13: error: cannot find 'dup2' in scope
 52 |             fflush(stdout)
 53 |
 54 |             dup2(originalFd, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 55 |             close(originalFd)
 56 |             pipe.fileHandleForWriting.closeFile()
[21/46] Compiling SwiftLI Emoticon.swift
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:48:30: error: cannot find 'dup' in scope
 46 |             // Capture wrapped output, then re-emit with leading/trailing padding
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
    |                              `- error: cannot find 'dup' in scope
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 50 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:49:13: error: cannot find 'dup2' in scope
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 50 |
 51 |             wrapped.render()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:54:13: error: cannot find 'dup2' in scope
 52 |             fflush(stdout)
 53 |
 54 |             dup2(originalFd, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 55 |             close(originalFd)
 56 |             pipe.fileHandleForWriting.closeFile()
[22/46] Compiling SwiftLI SwiftLogo.swift
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:48:30: error: cannot find 'dup' in scope
 46 |             // Capture wrapped output, then re-emit with leading/trailing padding
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
    |                              `- error: cannot find 'dup' in scope
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
 50 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:49:13: error: cannot find 'dup2' in scope
 47 |             let pipe = Pipe()
 48 |             let originalFd = dup(STDOUT_FILENO)
 49 |             dup2(pipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 50 |
 51 |             wrapped.render()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Padding.swift:54:13: error: cannot find 'dup2' in scope
 52 |             fflush(stdout)
 53 |
 54 |             dup2(originalFd, STDOUT_FILENO)
    |             `- error: cannot find 'dup2' in scope
 55 |             close(originalFd)
 56 |             pipe.fileHandleForWriting.closeFile()
[23/46] Compiling SwiftLI BlinkStyle.swift
[24/46] Compiling SwiftLI Color.swift
[25/46] Compiling SwiftLI Edge.swift
[26/46] Compiling SwiftLI LabelStyle.swift
[27/46] Compiling SwiftLI LineStyle.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:32: error: extra arguments at positions #3, #4 in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                `- error: extra arguments at positions #3, #4 in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:33: error: missing argument for parameter 'format' in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                 `- error: missing argument for parameter 'format' in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:74: error: value of optional type 'String?' must be unwrapped to a value of type 'String'
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                                                          |- error: value of optional type 'String?' must be unwrapped to a value of type 'String'
    |                                                                          |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                                                          `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 66 |     }
 67 |
[28/46] Compiling SwiftLI Weight.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:32: error: extra arguments at positions #3, #4 in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                `- error: extra arguments at positions #3, #4 in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:33: error: missing argument for parameter 'format' in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                 `- error: missing argument for parameter 'format' in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:74: error: value of optional type 'String?' must be unwrapped to a value of type 'String'
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                                                          |- error: value of optional type 'String?' must be unwrapped to a value of type 'String'
    |                                                                          |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                                                          `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 66 |     }
 67 |
[29/46] Compiling SwiftLI View.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:32: error: extra arguments at positions #3, #4 in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                `- error: extra arguments at positions #3, #4 in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:33: error: missing argument for parameter 'format' in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                 `- error: missing argument for parameter 'format' in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:74: error: value of optional type 'String?' must be unwrapped to a value of type 'String'
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                                                          |- error: value of optional type 'String?' must be unwrapped to a value of type 'String'
    |                                                                          |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                                                          `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 66 |     }
 67 |
[30/46] Compiling SwiftLI ViewBuilder.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:32: error: extra arguments at positions #3, #4 in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                `- error: extra arguments at positions #3, #4 in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:33: error: missing argument for parameter 'format' in call
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                 `- error: missing argument for parameter 'format' in call
 66 |     }
 67 |
Foundation.String.init:2:8: note: 'init(format:locale:_:)' declared here
1 | struct String {
2 | public init(format: __shared String, locale: __shared Locale?, _ args: any CVarArg...)}
  |        `- note: 'init(format:locale:_:)' declared here
3 |
/host/spi-builder-workspace/Sources/SwiftLI/View.swift:65:74: error: value of optional type 'String?' must be unwrapped to a value of type 'String'
 63 |     ) {
 64 |         self.header = ""
 65 |         self.contents = [String(localized: key.localizationValue, table: tableName, bundle: bundle, comment: comment)]
    |                                                                          |- error: value of optional type 'String?' must be unwrapped to a value of type 'String'
    |                                                                          |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                                                          `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 66 |     }
 67 |
[31/46] Compiling SwiftLI ProgressBar.swift
[32/46] Compiling SwiftLI HStack.swift
[33/46] Compiling SwiftLI Layout.swift
[34/46] Compiling SwiftLI TerminalCanvas.swift
[35/46] Compiling SwiftLI Clear.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Label.swift:80:22: error: no exact matches in call to initializer
 78 |         self.header = ""
 79 |         self.image = image
 80 |         self.title = String(localized: title.localizationValue)
    |                      `- error: no exact matches in call to initializer
 81 |         self.style = DefaultLabelStyle()
 82 |     }
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ c: Character)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ scalar: Unicode.Scalar)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ unicodeScalars: String.UnicodeScalarView)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift 4.0)
3 |   @inlinable public init(_ utf16: String.UTF16View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Label.swift:95:22: error: no exact matches in call to initializer
 93 |         self.header = ""
 94 |         self.image = image
 95 |         self.title = String(localized: title.localizationValue)
    |                      `- error: no exact matches in call to initializer
 96 |         self.style = DefaultLabelStyle()
 97 |     }
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ c: Character)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ scalar: Unicode.Scalar)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ unicodeScalars: String.UnicodeScalarView)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift 4.0)
3 |   @inlinable public init(_ utf16: String.UTF16View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
[36/46] Compiling SwiftLI Divider.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Label.swift:80:22: error: no exact matches in call to initializer
 78 |         self.header = ""
 79 |         self.image = image
 80 |         self.title = String(localized: title.localizationValue)
    |                      `- error: no exact matches in call to initializer
 81 |         self.style = DefaultLabelStyle()
 82 |     }
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ c: Character)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ scalar: Unicode.Scalar)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ unicodeScalars: String.UnicodeScalarView)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift 4.0)
3 |   @inlinable public init(_ utf16: String.UTF16View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Label.swift:95:22: error: no exact matches in call to initializer
 93 |         self.header = ""
 94 |         self.image = image
 95 |         self.title = String(localized: title.localizationValue)
    |                      `- error: no exact matches in call to initializer
 96 |         self.style = DefaultLabelStyle()
 97 |     }
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ c: Character)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ scalar: Unicode.Scalar)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ unicodeScalars: String.UnicodeScalarView)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift 4.0)
3 |   @inlinable public init(_ utf16: String.UTF16View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
[37/46] Compiling SwiftLI Group.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Label.swift:80:22: error: no exact matches in call to initializer
 78 |         self.header = ""
 79 |         self.image = image
 80 |         self.title = String(localized: title.localizationValue)
    |                      `- error: no exact matches in call to initializer
 81 |         self.style = DefaultLabelStyle()
 82 |     }
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ c: Character)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ scalar: Unicode.Scalar)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ unicodeScalars: String.UnicodeScalarView)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift 4.0)
3 |   @inlinable public init(_ utf16: String.UTF16View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Label.swift:95:22: error: no exact matches in call to initializer
 93 |         self.header = ""
 94 |         self.image = image
 95 |         self.title = String(localized: title.localizationValue)
    |                      `- error: no exact matches in call to initializer
 96 |         self.style = DefaultLabelStyle()
 97 |     }
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ c: Character)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ scalar: Unicode.Scalar)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ unicodeScalars: String.UnicodeScalarView)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift 4.0)
3 |   @inlinable public init(_ utf16: String.UTF16View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
[38/46] Compiling SwiftLI Label.swift
/host/spi-builder-workspace/Sources/SwiftLI/LocalizedStringKey.swift:13:35: error: 'LocalizationValue' is not a member type of struct 'Swift.String'
11 | @frozen
12 | public struct LocalizedStringKey: Equatable {
13 |     var localizationValue: String.LocalizationValue
   |                                   `- error: 'LocalizationValue' is not a member type of struct 'Swift.String'
14 |
15 |     /// Creates a localized string key from the given string value.
Swift.String:1:23: note: 'String' declared here
1 | @frozen public struct String {
  |                       `- note: 'String' declared here
2 |     public var _guts: _StringGuts
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Label.swift:80:22: error: no exact matches in call to initializer
 78 |         self.header = ""
 79 |         self.image = image
 80 |         self.title = String(localized: title.localizationValue)
    |                      `- error: no exact matches in call to initializer
 81 |         self.style = DefaultLabelStyle()
 82 |     }
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ c: Character)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ scalar: Unicode.Scalar)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ unicodeScalars: String.UnicodeScalarView)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift 4.0)
3 |   @inlinable public init(_ utf16: String.UTF16View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
/host/spi-builder-workspace/Sources/SwiftLI/CLI Basic Components/Label.swift:95:22: error: no exact matches in call to initializer
 93 |         self.header = ""
 94 |         self.image = image
 95 |         self.title = String(localized: title.localizationValue)
    |                      `- error: no exact matches in call to initializer
 96 |         self.style = DefaultLabelStyle()
 97 |     }
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ c: Character)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ scalar: Unicode.Scalar)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ unicodeScalars: String.UnicodeScalarView)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift 4.0)
3 |   @inlinable public init(_ utf16: String.UTF16View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:3:21: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(swift, introduced: 4.0, message: "Please use failable String.init?(_:UTF8View) when in Swift 3.2 mode")
3 |   @inlinable public init(_ utf8: String.UTF8View)}
  |                     `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @inlinable public init(_ substring: __shared Substring)}
  |                   `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ content: Substring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigString.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
_FoundationCollections.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ big: BigSubstring.UnicodeScalarView)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
FoundationEssentials.String.init:3:10: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
3 |   public init(_ characters: Slice<AttributedString.CharacterView>)}
  |          `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
4 |
Foundation.String.init:2:8: note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
1 | struct String {
2 | public init(_ cocoaString: NSString)}
  |        `- note: incorrect labels for candidate (have: '(localized:)', expected: '(_:)')
3 |
[39/46] Emitting module ArgumentParserToolInfo
[40/46] Compiling ArgumentParserToolInfo ToolInfo.swift
BUILD FAILURE 6.1 wasm