()
| 152 | }; |
| 153 | |
| 154 | const goForwardImpl = () => { |
| 155 | if (!arrayIsEmpty(forwardIds)) { |
| 156 | arrayPush(backwardIds, currentId as Id); |
| 157 | currentId = arrayShift(forwardIds); |
| 158 | updateStore(1, currentId as Id); |
| 159 | checkpointsChanged = 1; |
| 160 | } |
| 161 | }; |
| 162 | |
| 163 | const callListenersIfChanged = (): void => { |
| 164 | if (checkpointsChanged) { |
no test coverage detected
searching dependent graphs…