(parent, onError)
| 20695 | */ var Async = /** @class */ function() { |
| 20696 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 20697 | function Async1(parent, onError) { |
| 20698 | this._timeoutIds = null; |
| 20699 | this._immediateIds = null; |
| 20700 | this._intervalIds = null; |
| 20701 | this._animationFrameIds = null; |
| 20702 | this._isDisposed = false; |
| 20703 | this._parent = parent || null; |
| 20704 | this._onErrorHandler = onError; |
| 20705 | this._noop = function() { |
| 20706 | /* do nothing */ }; |
| 20707 | } |
| 20708 | /** |
| 20709 | * Dispose function, clears all async operations. |
| 20710 | */ Async1.prototype.dispose = function() { |
nothing calls this directly
no outgoing calls
no test coverage detected