* Processes the provided error callback. * @param {ErrorCallback=} callback signals when the build has completed again * @returns {void}
(callback)
| 420 | * @returns {void} |
| 421 | */ |
| 422 | invalidate(callback) { |
| 423 | if (callback) { |
| 424 | this.callbacks.push(callback); |
| 425 | } |
| 426 | if (!this._invalidReported) { |
| 427 | this._invalidReported = true; |
| 428 | this.compiler.hooks.invalid.call(null, Date.now()); |
| 429 | } |
| 430 | this._onChange(); |
| 431 | this._invalidate(); |
| 432 | } |
| 433 | |
| 434 | /** |
| 435 | * Processes the provided file time info entries. |
nothing calls this directly
no test coverage detected