* Change the currently activate async loader hooks for this module * loader to be the provided `AsyncLoaderHooks`. * * If present, this class customizes its core functionality to the * `AsyncLoaderHooks` object, including registration, loading, and resolving. * There are some responsi
(asyncLoaderHooks)
| 194 | * @param {AsyncLoaderHooks} asyncLoaderHooks |
| 195 | */ |
| 196 | #setAsyncLoaderHooks(asyncLoaderHooks) { |
| 197 | this.#asyncLoaderHooks = asyncLoaderHooks; |
| 198 | if (asyncLoaderHooks) { |
| 199 | this.isForAsyncLoaderHookWorker = asyncLoaderHooks.isForAsyncLoaderHookWorker; |
| 200 | } else { |
| 201 | this.isForAsyncLoaderHookWorker = false; |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * |
no outgoing calls
no test coverage detected