(protected upstream: LazyIterator<T>)
| 533 | private lastRead: Promise<IteratorResult<T>>; |
| 534 | |
| 535 | constructor(protected upstream: LazyIterator<T>) { |
| 536 | super(); |
| 537 | this.lastRead = Promise.resolve({value: null, done: false}); |
| 538 | } |
| 539 | |
| 540 | summary() { |
| 541 | return `${this.upstream.summary()} -> Serial`; |
nothing calls this directly
no outgoing calls
no test coverage detected