Build Information
Failed to build ReactiveEmitter, reference 0.2.9 (eb544c), with Swift 6.3 for Wasm on 21 Apr 2026 06:54:52 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/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/omochi/reactiveemitter.git
Reference: 0.2.9
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/omochi/reactiveemitter
* tag 0.2.9 -> FETCH_HEAD
HEAD is now at eb544ca ArrayProperty EditEvent
Cloned https://github.com/omochi/reactiveemitter.git
Revision (git rev-parse @):
eb544cab3cbca07f6293a202aa19bffba1d0d4fd
SUCCESS checkout https://github.com/omochi/reactiveemitter.git at 0.2.9
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/omochi/reactiveemitter.git
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/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/29] Emitting module ReactiveEmitter
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:4:34: error: cannot find type 'DispatchQueue' in scope
2 |
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
| `- error: cannot find type 'DispatchQueue' in scope
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
6 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:12:48: error: cannot find type 'DispatchQueue' in scope
10 | public typealias T = TSource.Event
11 |
12 | public init(source: TSource, observeQueue: DispatchQueue) {
| `- error: cannot find type 'DispatchQueue' in scope
13 | self.source = source
14 | self.observeQueue = observeQueue
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:24:31: error: cannot find type 'DispatchQueue' in scope
22 |
23 | private let source: TSource
24 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:27:35: error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
27 | public init(observeQueue: DispatchQueue,
| `- error: cannot find type 'DispatchQueue' in scope
28 | handler: @escaping (T) -> Void)
29 | {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:55:35: error: cannot find type 'DispatchQueue' in scope
53 | }
54 |
55 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:58:32: error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
58 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
59 | private var disposed: Bool = false
60 | }
[4/32] Compiling ReactiveEmitter ZipArray.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
[5/32] Compiling ReactiveEmitter Disposer.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
[6/32] Compiling ReactiveEmitter DisposerProtocol.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
[7/32] Compiling ReactiveEmitter FlatMapLatest.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
[8/32] Compiling ReactiveEmitter Map.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
[9/32] Compiling ReactiveEmitter Merge.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
[10/32] Compiling ReactiveEmitter Never.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
[11/32] Compiling ReactiveEmitter WeakProperty.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
[12/32] Compiling ReactiveEmitter Bind.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
[13/32] Compiling ReactiveEmitter Combine.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
[14/32] Compiling ReactiveEmitter Debug.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
[15/32] Compiling ReactiveEmitter EventSink.swift
[16/32] Compiling ReactiveEmitter EventSource.swift
[17/32] Compiling ReactiveEmitter RangeReplaceableCollectionClass.swift
[18/32] Compiling ReactiveEmitter Box.swift
[19/32] Compiling ReactiveEmitter LinkedList.swift
[20/32] Compiling ReactiveEmitter WeakBox.swift
[21/32] Compiling ReactiveEmitter CompositeDisposer.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:5:17: error: cannot find 'DispatchQueue' in scope
3 | public class CompositeDisposer : DisposerProtocol {
4 | public init() {
5 | queue = DispatchQueue.init(label: "\(type(of: self))")
| `- error: cannot find 'DispatchQueue' in scope
6 | }
7 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:47:24: error: 'nil' requires a contextual type
45 | return queue.sync {
46 | guard let d = disposers.first else {
47 | return nil
| `- error: 'nil' requires a contextual type
48 | }
49 | disposers.remove(node: disposers.firstNode!)
[22/32] Compiling ReactiveEmitter DisposerBag.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:5:17: error: cannot find 'DispatchQueue' in scope
3 | public class CompositeDisposer : DisposerProtocol {
4 | public init() {
5 | queue = DispatchQueue.init(label: "\(type(of: self))")
| `- error: cannot find 'DispatchQueue' in scope
6 | }
7 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:47:24: error: 'nil' requires a contextual type
45 | return queue.sync {
46 | guard let d = disposers.first else {
47 | return nil
| `- error: 'nil' requires a contextual type
48 | }
49 | disposers.remove(node: disposers.firstNode!)
[23/32] Compiling ReactiveEmitter FuncDisposer.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:5:17: error: cannot find 'DispatchQueue' in scope
3 | public class CompositeDisposer : DisposerProtocol {
4 | public init() {
5 | queue = DispatchQueue.init(label: "\(type(of: self))")
| `- error: cannot find 'DispatchQueue' in scope
6 | }
7 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:47:24: error: 'nil' requires a contextual type
45 | return queue.sync {
46 | guard let d = disposers.first else {
47 | return nil
| `- error: 'nil' requires a contextual type
48 | }
49 | disposers.remove(node: disposers.firstNode!)
[24/32] Compiling ReactiveEmitter NopDisposer.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:56:24: error: cannot find type 'DispatchQueue' in scope
54 | private var disposed: Bool = false
55 | private var disposers: Disposers = .init()
56 | private let queue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:5:17: error: cannot find 'DispatchQueue' in scope
3 | public class CompositeDisposer : DisposerProtocol {
4 | public init() {
5 | queue = DispatchQueue.init(label: "\(type(of: self))")
| `- error: cannot find 'DispatchQueue' in scope
6 | }
7 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Disposer/CompositeDisposer.swift:47:24: error: 'nil' requires a contextual type
45 | return queue.sync {
46 | guard let d = disposers.first else {
47 | return nil
| `- error: 'nil' requires a contextual type
48 | }
49 | disposers.remove(node: disposers.firstNode!)
[25/32] Compiling ReactiveEmitter ObserveOn.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:4:34: error: cannot find type 'DispatchQueue' in scope
2 |
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
| `- error: cannot find type 'DispatchQueue' in scope
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
6 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:12:48: error: cannot find type 'DispatchQueue' in scope
10 | public typealias T = TSource.Event
11 |
12 | public init(source: TSource, observeQueue: DispatchQueue) {
| `- error: cannot find type 'DispatchQueue' in scope
13 | self.source = source
14 | self.observeQueue = observeQueue
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:24:31: error: cannot find type 'DispatchQueue' in scope
22 |
23 | private let source: TSource
24 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:27:35: error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
27 | public init(observeQueue: DispatchQueue,
| `- error: cannot find type 'DispatchQueue' in scope
28 | handler: @escaping (T) -> Void)
29 | {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:55:35: error: cannot find type 'DispatchQueue' in scope
53 | }
54 |
55 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:58:32: error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
58 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
59 | private var disposed: Bool = false
60 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:5:16: error: generic parameter 'TSource' could not be inferred
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
| |- error: generic parameter 'TSource' could not be inferred
| `- note: explicitly specify the generic arguments to fix this issue
6 | }
7 | }
8 |
9 | public class EventSourceObserveOn<TSource: EventSourceProtocol> : EventSourceProtocol {
| `- note: 'TSource' declared as parameter to type 'EventSourceObserveOn'
10 | public typealias T = TSource.Event
11 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:31:30: error: cannot find 'DispatchQueue' in scope
29 | {
30 | self.observeQueue = observeQueue
31 | self.syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
| `- error: cannot find 'DispatchQueue' in scope
32 | self.handler = handler
33 | }
[26/32] Compiling ReactiveEmitter Sequence.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:4:34: error: cannot find type 'DispatchQueue' in scope
2 |
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
| `- error: cannot find type 'DispatchQueue' in scope
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
6 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:12:48: error: cannot find type 'DispatchQueue' in scope
10 | public typealias T = TSource.Event
11 |
12 | public init(source: TSource, observeQueue: DispatchQueue) {
| `- error: cannot find type 'DispatchQueue' in scope
13 | self.source = source
14 | self.observeQueue = observeQueue
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:24:31: error: cannot find type 'DispatchQueue' in scope
22 |
23 | private let source: TSource
24 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:27:35: error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
27 | public init(observeQueue: DispatchQueue,
| `- error: cannot find type 'DispatchQueue' in scope
28 | handler: @escaping (T) -> Void)
29 | {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:55:35: error: cannot find type 'DispatchQueue' in scope
53 | }
54 |
55 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:58:32: error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
58 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
59 | private var disposed: Bool = false
60 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:5:16: error: generic parameter 'TSource' could not be inferred
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
| |- error: generic parameter 'TSource' could not be inferred
| `- note: explicitly specify the generic arguments to fix this issue
6 | }
7 | }
8 |
9 | public class EventSourceObserveOn<TSource: EventSourceProtocol> : EventSourceProtocol {
| `- note: 'TSource' declared as parameter to type 'EventSourceObserveOn'
10 | public typealias T = TSource.Event
11 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:31:30: error: cannot find 'DispatchQueue' in scope
29 | {
30 | self.observeQueue = observeQueue
31 | self.syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
| `- error: cannot find 'DispatchQueue' in scope
32 | self.handler = handler
33 | }
[27/32] Compiling ReactiveEmitter SubscribeOnce.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:4:34: error: cannot find type 'DispatchQueue' in scope
2 |
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
| `- error: cannot find type 'DispatchQueue' in scope
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
6 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:12:48: error: cannot find type 'DispatchQueue' in scope
10 | public typealias T = TSource.Event
11 |
12 | public init(source: TSource, observeQueue: DispatchQueue) {
| `- error: cannot find type 'DispatchQueue' in scope
13 | self.source = source
14 | self.observeQueue = observeQueue
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:24:31: error: cannot find type 'DispatchQueue' in scope
22 |
23 | private let source: TSource
24 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:27:35: error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
27 | public init(observeQueue: DispatchQueue,
| `- error: cannot find type 'DispatchQueue' in scope
28 | handler: @escaping (T) -> Void)
29 | {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:55:35: error: cannot find type 'DispatchQueue' in scope
53 | }
54 |
55 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:58:32: error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
58 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
59 | private var disposed: Bool = false
60 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:5:16: error: generic parameter 'TSource' could not be inferred
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
| |- error: generic parameter 'TSource' could not be inferred
| `- note: explicitly specify the generic arguments to fix this issue
6 | }
7 | }
8 |
9 | public class EventSourceObserveOn<TSource: EventSourceProtocol> : EventSourceProtocol {
| `- note: 'TSource' declared as parameter to type 'EventSourceObserveOn'
10 | public typealias T = TSource.Event
11 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:31:30: error: cannot find 'DispatchQueue' in scope
29 | {
30 | self.observeQueue = observeQueue
31 | self.syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
| `- error: cannot find 'DispatchQueue' in scope
32 | self.handler = handler
33 | }
[28/32] Compiling ReactiveEmitter ValueOf.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:4:34: error: cannot find type 'DispatchQueue' in scope
2 |
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
| `- error: cannot find type 'DispatchQueue' in scope
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
6 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:12:48: error: cannot find type 'DispatchQueue' in scope
10 | public typealias T = TSource.Event
11 |
12 | public init(source: TSource, observeQueue: DispatchQueue) {
| `- error: cannot find type 'DispatchQueue' in scope
13 | self.source = source
14 | self.observeQueue = observeQueue
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:24:31: error: cannot find type 'DispatchQueue' in scope
22 |
23 | private let source: TSource
24 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:27:35: error: cannot find type 'DispatchQueue' in scope
25 |
26 | private class Sink : EventSinkProtocol {
27 | public init(observeQueue: DispatchQueue,
| `- error: cannot find type 'DispatchQueue' in scope
28 | handler: @escaping (T) -> Void)
29 | {
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:55:35: error: cannot find type 'DispatchQueue' in scope
53 | }
54 |
55 | private let observeQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:58:32: error: cannot find type 'DispatchQueue' in scope
56 | private let handler: (T) -> Void
57 |
58 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
59 | private var disposed: Bool = false
60 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:5:16: error: generic parameter 'TSource' could not be inferred
3 | extension EventSourceProtocol {
4 | public func observeOn(queue: DispatchQueue) -> EventSource<Event> {
5 | return EventSourceObserveOn(source: self, observeQueue: queue).asEventSource()
| |- error: generic parameter 'TSource' could not be inferred
| `- note: explicitly specify the generic arguments to fix this issue
6 | }
7 | }
8 |
9 | public class EventSourceObserveOn<TSource: EventSourceProtocol> : EventSourceProtocol {
| `- note: 'TSource' declared as parameter to type 'EventSourceObserveOn'
10 | public typealias T = TSource.Event
11 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:31:30: error: cannot find 'DispatchQueue' in scope
29 | {
30 | self.observeQueue = observeQueue
31 | self.syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
| `- error: cannot find 'DispatchQueue' in scope
32 | self.handler = handler
33 | }
[29/32] Compiling ReactiveEmitter ArrayProperty.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:5:21: error: cannot find 'DispatchQueue' in scope
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
| `- error: cannot find 'DispatchQueue' in scope
6 | }
7 |
[30/32] Compiling ReactiveEmitter EventEmitter.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:5:21: error: cannot find 'DispatchQueue' in scope
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
| `- error: cannot find 'DispatchQueue' in scope
6 | }
7 |
[31/32] Compiling ReactiveEmitter LateInitProperty.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:5:21: error: cannot find 'DispatchQueue' in scope
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
| `- error: cannot find 'DispatchQueue' in scope
6 | }
7 |
[32/32] Compiling ReactiveEmitter Property.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:73:28: error: cannot find type 'DispatchQueue' in scope
71 |
72 | private var handlers: Handlers = .init()
73 | private let syncQueue: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
74 | }
75 |
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:5:21: error: cannot find 'DispatchQueue' in scope
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
| `- error: cannot find 'DispatchQueue' in scope
6 | }
7 |
BUILD FAILURE 6.3 wasm