* Removes the provided module from the chunk. * @deprecated * @param {Module} module the module * @returns {void}
(module)
| 198 | * @returns {void} |
| 199 | */ |
| 200 | removeModule(module) { |
| 201 | ChunkGraph.getChunkGraphForChunk( |
| 202 | this, |
| 203 | "Chunk.removeModule", |
| 204 | "DEP_WEBPACK_CHUNK_REMOVE_MODULE" |
| 205 | ).disconnectChunkAndModule(this, module); |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Gets the number of modules in this chunk. |
no test coverage detected