()
| 95 | } |
| 96 | |
| 97 | toString() { |
| 98 | const view = this.viewRef.get(); |
| 99 | if (!view) { |
| 100 | Trace.write(`toString() of Style cannot execute correctly because ".viewRef" is cleared`, Trace.categories.Animation, Trace.messageType.warn); |
| 101 | |
| 102 | return ''; |
| 103 | } |
| 104 | |
| 105 | return `${view}.style`; |
| 106 | } |
| 107 | |
| 108 | public fontInternal: Font; |
| 109 | public iconFontFamily: string; |
no test coverage detected