* Gets dependency referenced exports. * @param {Dependency} dependency the dependency * @param {RuntimeSpec} runtime the runtime * @returns {ReferencedExports} referenced exports
(dependency, runtime)
| 4565 | * @returns {ReferencedExports} referenced exports |
| 4566 | */ |
| 4567 | getDependencyReferencedExports(dependency, runtime) { |
| 4568 | const referencedExports = dependency.getReferencedExports( |
| 4569 | this.moduleGraph, |
| 4570 | runtime |
| 4571 | ); |
| 4572 | return this.hooks.dependencyReferencedExports.call( |
| 4573 | referencedExports, |
| 4574 | dependency, |
| 4575 | runtime |
| 4576 | ); |
| 4577 | } |
| 4578 | |
| 4579 | /** |
| 4580 | * Removes reasons of dependency block. |
no test coverage detected