* Checks whether this chunk graph is entry module. * @param {Module} module the checked module * @returns {boolean} true, if the module is entry of any chunk
(module)
| 586 | * @returns {boolean} true, if the module is entry of any chunk |
| 587 | */ |
| 588 | isEntryModule(module) { |
| 589 | const cgm = this._getChunkGraphModule(module); |
| 590 | return cgm.entryInChunks !== undefined; |
| 591 | } |
| 592 | |
| 593 | /** |
| 594 | * Gets module chunks iterable. |
nothing calls this directly
no test coverage detected