(fiber, inst, subscribe)
| 7582 | checkIfSnapshotChanged(inst) && forceStoreRerender(fiber); |
| 7583 | } |
| 7584 | function subscribeToStore(fiber, inst, subscribe) { |
| 7585 | return subscribe(function () { |
| 7586 | checkIfSnapshotChanged(inst) && forceStoreRerender(fiber); |
| 7587 | }); |
| 7588 | } |
| 7589 | function checkIfSnapshotChanged(inst) { |
| 7590 | var latestGetSnapshot = inst.getSnapshot; |
| 7591 | inst = inst.value; |
nothing calls this directly
no test coverage detected
searching dependent graphs…