* Gets number of entry modules. * @param {Chunk} chunk the chunk * @returns {number} the amount of entry modules in chunk
(chunk)
| 1295 | * @returns {number} the amount of entry modules in chunk |
| 1296 | */ |
| 1297 | getNumberOfEntryModules(chunk) { |
| 1298 | const cgc = this._getChunkGraphChunk(chunk); |
| 1299 | return cgc.entryModules.size; |
| 1300 | } |
| 1301 | |
| 1302 | /** |
| 1303 | * Gets number of runtime modules. |
no test coverage detected