* Adds presentational dependency. * @param {Dependency} presentationalDependency dependency being tied to module. * This is a Dependency without edge in the module graph. It's only for presentation. * @returns {void}
(presentationalDependency)
| 720 | * @returns {void} |
| 721 | */ |
| 722 | addPresentationalDependency(presentationalDependency) { |
| 723 | if (this.presentationalDependencies === undefined) { |
| 724 | this.presentationalDependencies = []; |
| 725 | } |
| 726 | this.presentationalDependencies.push(presentationalDependency); |
| 727 | } |
| 728 | |
| 729 | /** |
| 730 | * Adds code generation dependency. |
no test coverage detected