(exit: Exit.Exit<A, E>)
| 14551 | ) |
| 14552 | ), |
| 14553 | step(exit: Exit.Exit<A, E>) { |
| 14554 | if (state.retry || !isTransactionConsistent(state)) { |
| 14555 | return clearTransaction(state) |
| 14556 | } |
| 14557 | if (Exit.isSuccess(exit)) { |
| 14558 | commitTransaction(fiber, state) |
| 14559 | } else { |
| 14560 | clearTransaction(state) |
| 14561 | } |
| 14562 | result = exit |
| 14563 | } |
| 14564 | }), |
| 14565 | () => result! |
| 14566 | ) |
nothing calls this directly
no test coverage detected