* Serializes this instance into the provided serializer context. * @param {ObjectSerializerContext} context context
(context)
| 103 | * @param {ObjectSerializerContext} context context |
| 104 | */ |
| 105 | serialize(context) { |
| 106 | context |
| 107 | .write(this.exports) |
| 108 | .write(this.otherProvided) |
| 109 | .write(this.otherCanMangleProvide) |
| 110 | .write(this.otherTerminalBinding); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Restores this instance from the provided deserializer context. |