* Adds the provided module to the compilation. * @param {Module} module module to be added that was created * @param {ModuleCallback} callback returns the module in the compilation, * it could be the passed one (if new), or an already existing in the compilation * @returns {void}
(module, callback)
| 1606 | * @returns {void} |
| 1607 | */ |
| 1608 | addModule(module, callback) { |
| 1609 | this.addModuleQueue.add(module, callback); |
| 1610 | } |
| 1611 | |
| 1612 | /** |
| 1613 | * Adds the provided module to the compilation. |
no test coverage detected