| | |
| | | } |
| | | |
| | | /** |
| | | * 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} |
| | |
| | | } |
| | | |
| | | /** |
| | | * Removes dependency. |
| | | * @param {Dependency} dependency dependency being removed |
| | | * @returns {void} |
| | | */ |
| | |
| | | } |
| | | |
| | | /** |
| | | * Removes all dependencies and blocks |
| | | * Clear dependencies and blocks. |
| | | * @returns {void} |
| | | */ |
| | | clearDependenciesAndBlocks() { |
| | |
| | | } |
| | | |
| | | /** |
| | | * Updates the hash with the data contributed by this instance. |
| | | * @param {Hash} hash the hash used to track dependencies |
| | | * @param {UpdateHashContext} context context |
| | | * @returns {void} |
| | |
| | | } |
| | | |
| | | /** |
| | | * Serializes this instance into the provided serializer context. |
| | | * @param {ObjectSerializerContext} context context |
| | | */ |
| | | serialize({ write }) { |
| | |
| | | } |
| | | |
| | | /** |
| | | * Restores this instance from the provided deserializer context. |
| | | * @param {ObjectDeserializerContext} context context |
| | | */ |
| | | deserialize({ read }) { |