| 14 | } |
| 15 | |
| 16 | interface SignalNode<T = any> extends ReactiveNode { |
| 17 | currentValue: T; |
| 18 | pendingValue: T; |
| 19 | } |
| 20 | |
| 21 | // Marks a parent (effect or scope) whose deps include at least one child |
| 22 | // effect. Used to gate the dispose-children-first slow path in run() so |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…