* Gets chunk modules iterable. * @param {Chunk} chunk the chunk * @returns {Iterable<Module>} return the modules for this chunk
(chunk)
| 668 | * @returns {Iterable<Module>} return the modules for this chunk |
| 669 | */ |
| 670 | getChunkModulesIterable(chunk) { |
| 671 | const cgc = this._getChunkGraphChunk(chunk); |
| 672 | return cgc.modules; |
| 673 | } |
| 674 | |
| 675 | /** |
| 676 | * Gets chunk modules iterable by source type. |
no test coverage detected