* Serializes this instance into the provided serializer context. * @param {ObjectSerializerContext} context context
(context)
| 165 | * @param {ObjectSerializerContext} context context |
| 166 | */ |
| 167 | serialize(context) { |
| 168 | context |
| 169 | .write(this.sourceStr) |
| 170 | .write(this.identifierStr) |
| 171 | .write(this.readableIdentifierStr) |
| 172 | .write(this.runtimeRequirements); |
| 173 | |
| 174 | super.serialize(context); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Restores this instance from the provided deserializer context. |