| 52 | |
| 53 | /** A push-driven async string queue used to adapt CF's onOutput callback. */ |
| 54 | class OutputQueue { |
| 55 | private readonly buffer: Array<string> = [] |
| 56 | private readonly waiters: Array<(r: IteratorResult<string>) => void> = [] |
| 57 | private ended = false |
nothing calls this directly
no outgoing calls
no test coverage detected