* Gets chunk full hash modules iterable. * @param {Chunk} chunk the chunk * @returns {Iterable<RuntimeModule> | undefined} iterable of modules (do not modify)
(chunk)
| 1452 | * @returns {Iterable<RuntimeModule> | undefined} iterable of modules (do not modify) |
| 1453 | */ |
| 1454 | getChunkFullHashModulesIterable(chunk) { |
| 1455 | const cgc = this._getChunkGraphChunk(chunk); |
| 1456 | return cgc.fullHashModules; |
| 1457 | } |
| 1458 | |
| 1459 | /** |
| 1460 | * Gets chunk full hash modules set. |
no test coverage detected