Stop this effect and clean up all subscriptions.
()
| 3045 | } |
| 3046 | /** Stop this effect and clean up all subscriptions. */ |
| 3047 | stop() { |
| 3048 | if (this._isStopped) return; |
| 3049 | this._isStopped = true; |
| 3050 | this._reactivity._unsubscribeEffect(this); |
| 3051 | this._reactivity._cleanupOrphanedDeps(this.dependencies); |
| 3052 | this._reactivity._pendingEffects.delete(this); |
| 3053 | } |
| 3054 | }; |
| 3055 | var Reactivity = class { |
| 3056 | constructor() { |
no test coverage detected