()
| 157 | } |
| 158 | |
| 159 | protected queueUpdate(): void { |
| 160 | if (this.updateQueued) { |
| 161 | return |
| 162 | } |
| 163 | |
| 164 | this.updateQueued = true |
| 165 | queueMicrotask(() => { |
| 166 | this.updateQueued = false |
| 167 | if (!this.destroyed) { |
| 168 | this.host.requestUpdate() |
| 169 | } |
| 170 | }) |
| 171 | } |
| 172 | |
| 173 | private queueQueryClientChanged(): void { |
| 174 | if (this.clientChangeQueued) { |
nothing calls this directly
no test coverage detected