(fiber, inst, nextSnapshot, getSnapshot)
| 7577 | : renderedSnapshot.push(fiber)); |
| 7578 | } |
| 7579 | function updateStoreInstance(fiber, inst, nextSnapshot, getSnapshot) { |
| 7580 | inst.value = nextSnapshot; |
| 7581 | inst.getSnapshot = getSnapshot; |
| 7582 | checkIfSnapshotChanged(inst) && forceStoreRerender(fiber); |
| 7583 | } |
| 7584 | function subscribeToStore(fiber, inst, subscribe) { |
| 7585 | return subscribe(function () { |
| 7586 | checkIfSnapshotChanged(inst) && forceStoreRerender(fiber); |
nothing calls this directly
no test coverage detected
searching dependent graphs…