* Gets module chunks iterable. * @param {Module} module the module * @returns {Iterable<Chunk>} iterable of chunks (do not modify)
(module)
| 596 | * @returns {Iterable<Chunk>} iterable of chunks (do not modify) |
| 597 | */ |
| 598 | getModuleChunksIterable(module) { |
| 599 | const cgm = this._getChunkGraphModule(module); |
| 600 | return cgm.chunks; |
| 601 | } |
| 602 | |
| 603 | /** |
| 604 | * Gets ordered module chunks iterable. |
no test coverage detected