(
iterators: LazyIterator<LazyIterator<T>>,
private readonly baseErrorHandler?: (e: Error) => boolean)
| 933 | private moreIterators: LazyIterator<LazyIterator<T>>; |
| 934 | |
| 935 | constructor( |
| 936 | iterators: LazyIterator<LazyIterator<T>>, |
| 937 | private readonly baseErrorHandler?: (e: Error) => boolean) { |
| 938 | super(); |
| 939 | this.moreIterators = iterators; |
| 940 | } |
| 941 | |
| 942 | summary() { |
| 943 | const upstreamSummaries = 'TODO: fill in upstream of chained summaries'; |
nothing calls this directly
no outgoing calls
no test coverage detected