(d)
| 4638 | * @param {Dependency} d dependency to (maybe) patch up |
| 4639 | */ |
| 4640 | const iteratorDependency = (d) => { |
| 4641 | const depModule = this.moduleGraph.getModule(d); |
| 4642 | if (!depModule) { |
| 4643 | return; |
| 4644 | } |
| 4645 | this.patchChunksAfterReasonRemoval(depModule, chunk); |
| 4646 | }; |
| 4647 | |
| 4648 | const blocks = block.blocks; |
| 4649 | for (const asyncBlock of blocks) { |
nothing calls this directly
no test coverage detected