* Gets number of chunk modules. * @param {Chunk} chunk the chunk * @returns {number} the number of modules which are contained in this chunk
(chunk)
| 648 | * @returns {number} the number of modules which are contained in this chunk |
| 649 | */ |
| 650 | getNumberOfChunkModules(chunk) { |
| 651 | const cgc = this._getChunkGraphChunk(chunk); |
| 652 | return cgc.modules.size; |
| 653 | } |
| 654 | |
| 655 | /** |
| 656 | * Gets number of chunk full hash modules. |
no test coverage detected