* Checks whether this chunk can be integrated with another chunk. * @deprecated * @param {Chunk} otherChunk the other chunk * @returns {boolean} true, if chunks could be integrated
(otherChunk)
| 335 | * @returns {boolean} true, if chunks could be integrated |
| 336 | */ |
| 337 | canBeIntegrated(otherChunk) { |
| 338 | const chunkGraph = ChunkGraph.getChunkGraphForChunk( |
| 339 | this, |
| 340 | "Chunk.canBeIntegrated", |
| 341 | "DEP_WEBPACK_CHUNK_CAN_BE_INTEGRATED" |
| 342 | ); |
| 343 | return chunkGraph.canChunksBeIntegrated(this, otherChunk); |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * Checks whether this chunk is empty. |
nothing calls this directly
no test coverage detected