* Gets rendered module hash. * @param {Module} module the module * @param {RuntimeSpec} runtime the runtime * @returns {string} hash
(module, runtime)
| 1633 | * @returns {string} hash |
| 1634 | */ |
| 1635 | getRenderedModuleHash(module, runtime) { |
| 1636 | const cgm = this._getChunkGraphModule(module); |
| 1637 | const hashes = /** @type {RuntimeSpecMap<ModuleHashInfo>} */ (cgm.hashes); |
| 1638 | return this._getModuleHashInfo(module, hashes, runtime).renderedHash; |
| 1639 | } |
| 1640 | |
| 1641 | /** |
| 1642 | * Sets module hashes. |
no test coverage detected