()
| 524 | } |
| 525 | }; |
| 526 | const goForwardImpl = () => { |
| 527 | if (!arrayIsEmpty(forwardIds)) { |
| 528 | arrayPush(backwardIds, currentId); |
| 529 | currentId = arrayShift(forwardIds); |
| 530 | updateStore(1, currentId); |
| 531 | checkpointsChanged = 1; |
| 532 | } |
| 533 | }; |
| 534 | const callListenersIfChanged = () => { |
| 535 | if (checkpointsChanged) { |
| 536 | callListeners(checkpointIdsListeners); |
no test coverage detected
searching dependent graphs…