* Creates a compilation. * @param {CompilationParams} params the compilation parameters * @returns {Compilation} compilation
(params)
| 1359 | * @returns {Compilation} compilation |
| 1360 | */ |
| 1361 | createCompilation(params) { |
| 1362 | this._cleanupLastCompilation(); |
| 1363 | return (this._lastCompilation = new Compilation(this, params)); |
| 1364 | } |
| 1365 | |
| 1366 | /** |
| 1367 | * Returns the created compilation. |
no test coverage detected