* Restores this instance from the provided deserializer context. * @param {ObjectDeserializerContext} context context
(context)
| 105 | * @param {ObjectDeserializerContext} context context |
| 106 | */ |
| 107 | deserialize(context) { |
| 108 | const { read } = context; |
| 109 | this.groupOptions = read(); |
| 110 | this.loc = read(); |
| 111 | this.request = read(); |
| 112 | super.deserialize(context); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | makeSerializable(AsyncDependenciesBlock, "webpack/lib/AsyncDependenciesBlock"); |