* Process mods on disk (multi-threaded)
()
| 694 | * Process mods on disk (multi-threaded) |
| 695 | */ |
| 696 | async processMods() { |
| 697 | this.#startThreads() |
| 698 | |
| 699 | for ( const collectKey of this.#set_Collections ) { |
| 700 | for ( const thisFile of this.#map_FolderContents[collectKey] ) { |
| 701 | this.#scanPromise.push(this.#addMod(collectKey, thisFile)) |
| 702 | } |
| 703 | } |
| 704 | this.#exitThreads() |
| 705 | } |
| 706 | |
| 707 | /** |
| 708 | * Post-process mods, run after processMods, but before returning to caller |
no test coverage detected