(this: RootEffectNode)
| 259 | this.notifier.notify(NotificationSource.RootEffect); |
| 260 | }, |
| 261 | destroy(this: RootEffectNode) { |
| 262 | consumerDestroy(this); |
| 263 | |
| 264 | if (this.onDestroyFns !== null) { |
| 265 | for (const fn of this.onDestroyFns) { |
| 266 | fn(); |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | this.cleanup(); |
| 271 | this.scheduler.remove(this); |
| 272 | }, |
| 273 | }))(); |
| 274 | |
| 275 | export const VIEW_EFFECT_NODE: Omit<ViewEffectNode, 'fn' | 'view' | 'injector' | 'notifier'> = |
nothing calls this directly
no test coverage detected
searching dependent graphs…