| 4 | * the stream translator consumes. |
| 5 | */ |
| 6 | export class AsyncQueue<T> implements AsyncIterable<T> { |
| 7 | private readonly values: Array<T> = [] |
| 8 | private readonly waiters: Array<{ |
| 9 | resolve: (result: IteratorResult<T>) => void |
nothing calls this directly
no outgoing calls
no test coverage detected