()
| 3762 | * @returns {Promise<void>} promise |
| 3763 | */ |
| 3764 | const ensureSetup = () => { |
| 3765 | if (!setupPromise) { |
| 3766 | setupPromise = this.setup(); |
| 3767 | } |
| 3768 | return setupPromise; |
| 3769 | }; |
| 3770 | |
| 3771 | // `watchRun` and `done` are tapped on the compiler directly — no iteration |
| 3772 | // over `MultiCompiler.compilers`: |