* Checks whether this module is in the provided chunk. * @deprecated * @param {Chunk} chunk the chunk * @returns {boolean} true, when the module is in the chunk
(chunk)
| 554 | * @returns {boolean} true, when the module is in the chunk |
| 555 | */ |
| 556 | isInChunk(chunk) { |
| 557 | return ChunkGraph.getChunkGraphForModule( |
| 558 | this, |
| 559 | "Module.isInChunk", |
| 560 | "DEP_WEBPACK_MODULE_IS_IN_CHUNK" |
| 561 | ).isModuleInChunk(this, chunk); |
| 562 | } |
| 563 | |
| 564 | /** |
| 565 | * @deprecated |
no test coverage detected