Stop this effect and clean up all subscriptions.
()
| 2996 | } |
| 2997 | /** Stop this effect and clean up all subscriptions. */ |
| 2998 | stop() { |
| 2999 | if (this._isStopped) return; |
| 3000 | this._isStopped = true; |
| 3001 | this._reactivity._unsubscribeEffect(this); |
| 3002 | this._reactivity._cleanupOrphanedDeps(this.dependencies); |
| 3003 | this._reactivity._pendingEffects.delete(this); |
| 3004 | } |
| 3005 | }; |
| 3006 | var Reactivity = class { |
| 3007 | constructor() { |
no test coverage detected