()
| 7425 | return !(this._blinkStartTimeout || this._blinkInterval); |
| 7426 | } |
| 7427 | dispose() { |
| 7428 | this._blinkInterval && (this._coreBrowserService.window.clearInterval(this._blinkInterval), this._blinkInterval = void 0), this._blinkStartTimeout && (this._coreBrowserService.window.clearTimeout(this._blinkStartTimeout), this._blinkStartTimeout = void 0), this._animationFrame && (this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame), this._animationFrame = void 0); |
| 7429 | } |
| 7430 | restartBlinkAnimation() { |
| 7431 | this.isPaused || (this._animationTimeRestarted = Date.now(), this.isCursorVisible = true, this._animationFrame || (this._animationFrame = this._coreBrowserService.window.requestAnimationFrame((() => { |
| 7432 | this._renderCallback(), this._animationFrame = void 0; |
| 7433 | })))); |
| 7434 | } |
no outgoing calls
no test coverage detected