()
| 89 | } |
| 90 | |
| 91 | hostUpdate(): void { |
| 92 | if (this.destroyed) { |
| 93 | return |
| 94 | } |
| 95 | |
| 96 | this.isHostUpdating = true |
| 97 | try { |
| 98 | this.onHostUpdate() |
| 99 | } finally { |
| 100 | this.isHostUpdating = false |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | destroy(): void { |
| 105 | if (this.destroyed) { |
nothing calls this directly
no test coverage detected