()
| 364 | } |
| 365 | |
| 366 | private init(): Promise<void> { |
| 367 | if (!this.initPromise) { |
| 368 | this.initPromise = this.internalInit() |
| 369 | } |
| 370 | |
| 371 | return this.initPromise |
| 372 | } |
| 373 | |
| 374 | private internalInit(): Promise<void> { |
| 375 | // eslint-disable-next-line no-async-promise-executor |
no test coverage detected