* Serializes this instance into the provided serializer context. * @param {ObjectSerializerContext} context context
(context)
| 288 | * @param {ObjectSerializerContext} context context |
| 289 | */ |
| 290 | serialize(context) { |
| 291 | context.write(this._name).write(this._exposes).write(this._shareScope); |
| 292 | super.serialize(context); |
| 293 | } |
| 294 | |
| 295 | /** |
| 296 | * Restores this instance from the provided deserializer context. |