* Gets chunk entry modules iterable. * @param {Chunk} chunk the chunk * @returns {Iterable<Module>} iterable of modules (do not modify)
(chunk)
| 1315 | * @returns {Iterable<Module>} iterable of modules (do not modify) |
| 1316 | */ |
| 1317 | getChunkEntryModulesIterable(chunk) { |
| 1318 | const cgc = this._getChunkGraphChunk(chunk); |
| 1319 | return cgc.entryModules.keys(); |
| 1320 | } |
| 1321 | |
| 1322 | /** |
| 1323 | * Gets chunk entry dependent chunks iterable. |
no test coverage detected