(nodeIds: string[])
| 215 | } |
| 216 | |
| 217 | private addMultipleToQueue(nodeIds: string[]): void { |
| 218 | for (const nodeId of nodeIds) { |
| 219 | this.addToQueue(nodeId) |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | private dequeue(): string | undefined { |
| 224 | return this.readyQueue.shift() |
no test coverage detected