()
| 213 | }; |
| 214 | |
| 215 | const goForward = (): Checkpoints => { |
| 216 | goForwardImpl(); |
| 217 | callListenersIfChanged(); |
| 218 | return checkpoints; |
| 219 | }; |
| 220 | |
| 221 | const goTo = (checkpointId: Id): Checkpoints => { |
| 222 | const action = arrayHas(backwardIds, checkpointId) |
nothing calls this directly
no test coverage detected
searching dependent graphs…