* Restores this instance from the provided deserializer context. * @param {ObjectDeserializerContext} context context
(context)
| 179 | * @param {ObjectDeserializerContext} context context |
| 180 | */ |
| 181 | deserialize(context) { |
| 182 | this.sourceStr = context.read(); |
| 183 | const c1 = context.rest; |
| 184 | this.identifierStr = c1.read(); |
| 185 | const c2 = c1.rest; |
| 186 | this.readableIdentifierStr = c2.read(); |
| 187 | const c3 = c2.rest; |
| 188 | this.runtimeRequirements = c3.read(); |
| 189 | |
| 190 | super.deserialize(c3.rest); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | makeSerializable(RawModule, "webpack/lib/RawModule"); |