* Restores this instance from the provided deserializer context. * @param {ObjectDeserializerContext} context context
(context)
| 196 | * @param {ObjectDeserializerContext} context context |
| 197 | */ |
| 198 | deserialize(context) { |
| 199 | const { read } = context; |
| 200 | |
| 201 | this.content = read(); |
| 202 | this.stage = read(); |
| 203 | this.position = read(); |
| 204 | this.key = read(); |
| 205 | this.endContent = read(); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | makeSerializable(InitFragment, "webpack/lib/InitFragment"); |