* Return the class name for this class to use in serialization contexts. * * Generally speaking this will be the same thing that constructor.name * would have returned. However, the class name needs to be robust * against minification for serialization/deserialization to work properly.
()
| 96 | * class hierarchies and a non-leaf node is used for serialization purposes. |
| 97 | */ |
| 98 | getClassName(): string { |
| 99 | return (this.constructor as SerializableConstructor<Serializable>) |
| 100 | .className; |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Return all the non-weight state needed to serialize this object. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…