* Adds the provided dependency to the dependencies block. * @param {Dependency} dependency dependency being tied to block. * This is an "edge" pointing to another "node" on module graph. * @returns {void}
(dependency)
| 59 | * @returns {void} |
| 60 | */ |
| 61 | addDependency(dependency) { |
| 62 | this.dependencies.push(dependency); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Removes dependency. |