()
| 811 | } |
| 812 | |
| 813 | toString(): string { |
| 814 | const view = this.viewRef.get(); |
| 815 | if (!view) { |
| 816 | Trace.write(`toString() of CssState cannot execute correctly because ".viewRef" is cleared`, Trace.categories.Animation, Trace.messageType.warn); |
| 817 | |
| 818 | return ''; |
| 819 | } |
| 820 | |
| 821 | return `${view}._cssState`; |
| 822 | } |
| 823 | } |
| 824 | CssState.prototype._appliedChangeMap = CssState.emptyChangeMap; |
| 825 | CssState.prototype._appliedAnimations = CssState.emptyAnimationArray; |
no test coverage detected