(_, idx)
| 675 | } |
| 676 | |
| 677 | #workQueueDone(_, idx) { |
| 678 | this.#threadPoolIdx.delete(idx) |
| 679 | |
| 680 | this.#threadPoolCount-- |
| 681 | if ( this.#threadPoolCount === 0 ) { |
| 682 | this.processModsPost() |
| 683 | this.#threadDoneEmit.emit('process-mods-done') |
| 684 | } |
| 685 | } |
| 686 | |
| 687 | #getCurrentThread( largeFileThread = false ) { |
| 688 | if ( largeFileThread ) { return Math.min(...this.#threadPoolIdx) } |
nothing calls this directly
no test coverage detected