* Restores this instance from the provided deserializer context. * @param {ObjectDeserializerContext} context context
({ read })
| 112 | * @param {ObjectDeserializerContext} context context |
| 113 | */ |
| 114 | deserialize({ read }) { |
| 115 | this.dependencies = read(); |
| 116 | this.blocks = read(); |
| 117 | for (const block of this.blocks) { |
| 118 | block.parent = this; |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | makeSerializable(DependenciesBlock, "webpack/lib/DependenciesBlock"); |