* Records where this chunk group originated from in user code. * The origin is used for diagnostics, ordering, and reporting. * @param {Module | null} module origin module * @param {DependencyLocation} loc location of the reference in the origin module * @param {string} request request name
(module, loc, request)
| 458 | * @returns {void} |
| 459 | */ |
| 460 | addOrigin(module, loc, request) { |
| 461 | this.origins.push({ |
| 462 | module, |
| 463 | loc, |
| 464 | request |
| 465 | }); |
| 466 | } |
| 467 | |
| 468 | /** |
| 469 | * Collects the emitted files produced by every chunk in the group. |
no test coverage detected