* Serializes this instance into the provided serializer context. * @param {ConcatSource} source the concat source to be serialized * @param {ObjectSerializerContext} context context * @returns {void}
(source, { write })
| 101 | * @returns {void} |
| 102 | */ |
| 103 | serialize(source, { write }) { |
| 104 | write(source.getChildren()); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Restores this instance from the provided deserializer context. |
nothing calls this directly
no test coverage detected