(s: SignalNode)
| 264 | } |
| 265 | |
| 266 | function updateSignal(s: SignalNode): boolean { |
| 267 | s.flags = ReactiveFlags.Mutable; |
| 268 | return s.currentValue !== (s.currentValue = s.pendingValue); |
| 269 | } |
| 270 | |
| 271 | function run(e: EffectNode): void { |
| 272 | const flags = e.flags; |
no outgoing calls
no test coverage detected
searching dependent graphs…