* Gets chunk entry modules with chunk group iterable. * @param {Chunk} chunk the chunk * @returns {Iterable<EntryModuleWithChunkGroup>} iterable of modules (do not modify)
(chunk)
| 1482 | * @returns {Iterable<EntryModuleWithChunkGroup>} iterable of modules (do not modify) |
| 1483 | */ |
| 1484 | getChunkEntryModulesWithChunkGroupIterable(chunk) { |
| 1485 | const cgc = this._getChunkGraphChunk(chunk); |
| 1486 | return cgc.entryModules; |
| 1487 | } |
| 1488 | |
| 1489 | /** |
| 1490 | * Gets block chunk group. |
no test coverage detected