({ onError, onResult, resultReturns, onDone, rethrowIfPossible })
| 9 | |
| 10 | class SyncBailHookCodeFactory extends HookCodeFactory { |
| 11 | content({ onError, onResult, resultReturns, onDone, rethrowIfPossible }) { |
| 12 | return this.callTapsSeries({ |
| 13 | onError: (i, err) => onError(err), |
| 14 | onResult: (i, result, next) => |
| 15 | `if(${result} !== undefined) {\n${onResult( |
| 16 | result |
| 17 | )};\n} else {\n${next()}}\n`, |
| 18 | resultReturns, |
| 19 | onDone, |
| 20 | rethrowIfPossible |
| 21 | }); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | const factory = new SyncBailHookCodeFactory(); |
nothing calls this directly
no test coverage detected