* Throw missing module error function. * @param {object} options generation options * @param {string=} options.request request string used originally * @returns {string} generated error function
({ request })
| 557 | * @returns {string} generated error function |
| 558 | */ |
| 559 | throwMissingModuleErrorFunction({ request }) { |
| 560 | return `function webpackMissingModule() { ${this.throwMissingModuleErrorBlock( |
| 561 | { request } |
| 562 | )} }`; |
| 563 | } |
| 564 | |
| 565 | /** |
| 566 | * Returns generated error IIFE. |
no test coverage detected