* Gets chunk runtime modules iterable. * @param {Chunk} chunk the chunk * @returns {Iterable<RuntimeModule>} iterable of modules (do not modify)
(chunk)
| 1422 | * @returns {Iterable<RuntimeModule>} iterable of modules (do not modify) |
| 1423 | */ |
| 1424 | getChunkRuntimeModulesIterable(chunk) { |
| 1425 | const cgc = this._getChunkGraphChunk(chunk); |
| 1426 | return cgc.runtimeModules; |
| 1427 | } |
| 1428 | |
| 1429 | /** |
| 1430 | * Gets chunk runtime modules in order. |
no test coverage detected