(label = EMPTY_STRING)
| 131 | let valueListenerId: string; |
| 132 | |
| 133 | const addCheckpointImpl = (label = EMPTY_STRING): Id => { |
| 134 | if (isUndefined(currentId)) { |
| 135 | currentId = EMPTY_STRING + nextCheckpointId++; |
| 136 | mapSet(deltas, currentId, [cellsDelta, valuesDelta]); |
| 137 | setCheckpoint(currentId, label); |
| 138 | cellsDelta = mapNew(); |
| 139 | valuesDelta = mapNew(); |
| 140 | checkpointsChanged = 1; |
| 141 | } |
| 142 | return currentId as Id; |
| 143 | }; |
| 144 | |
| 145 | const goBackwardImpl = () => { |
| 146 | if (!arrayIsEmpty(backwardIds)) { |
no test coverage detected
searching dependent graphs…