* Restores this instance from the provided deserializer context. * @param {ObjectDeserializerContext} context context
(context)
| 1371 | * @param {ObjectDeserializerContext} context context |
| 1372 | */ |
| 1373 | deserialize(context) { |
| 1374 | this.request = context.read(); |
| 1375 | const c1 = context.rest; |
| 1376 | this.externalType = c1.read(); |
| 1377 | const c2 = c1.rest; |
| 1378 | this.userRequest = c2.read(); |
| 1379 | const c3 = c2.rest; |
| 1380 | this.dependencyMeta = c3.read(); |
| 1381 | |
| 1382 | super.deserialize(c3.rest); |
| 1383 | } |
| 1384 | } |
| 1385 | |
| 1386 | ExternalModule.getCompilationHooks = createHooksRegistry( |