* Checks whether this chunk contains the module. * @deprecated * @param {Module} module the module * @returns {boolean} true, if the chunk contains the module
(module)
| 256 | * @returns {boolean} true, if the chunk contains the module |
| 257 | */ |
| 258 | containsModule(module) { |
| 259 | return ChunkGraph.getChunkGraphForChunk( |
| 260 | this, |
| 261 | "Chunk.containsModule", |
| 262 | "DEP_WEBPACK_CHUNK_CONTAINS_MODULE" |
| 263 | ).isModuleInChunk(module, this); |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * Returns the modules for this chunk. |
no test coverage detected