* Gets chunk modules size. * @param {Chunk} chunk the chunk * @returns {number} total size of all modules in the chunk
(chunk)
| 964 | * @returns {number} total size of all modules in the chunk |
| 965 | */ |
| 966 | getChunkModulesSize(chunk) { |
| 967 | const cgc = this._getChunkGraphChunk(chunk); |
| 968 | return cgc.modules.getFromUnorderedCache(getModulesSize); |
| 969 | } |
| 970 | |
| 971 | /** |
| 972 | * Gets chunk modules sizes. |
no test coverage detected