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