(this: RootEffectNode)
| 255 | /* @__PURE__ */ (() => ({ |
| 256 | ...EFFECT_NODE, |
| 257 | consumerMarkedDirty(this: RootEffectNode) { |
| 258 | this.scheduler.schedule(this); |
| 259 | this.notifier.notify(NotificationSource.RootEffect); |
| 260 | }, |
| 261 | destroy(this: RootEffectNode) { |
| 262 | consumerDestroy(this); |
| 263 |
nothing calls this directly
no test coverage detected
searching dependent graphs…