({ onError, onDone, rethrowIfPossible })
| 9 | |
| 10 | class SyncLoopHookCodeFactory extends HookCodeFactory { |
| 11 | content({ onError, onDone, rethrowIfPossible }) { |
| 12 | return this.callTapsLooping({ |
| 13 | onError: (i, err) => onError(err), |
| 14 | onDone, |
| 15 | rethrowIfPossible |
| 16 | }); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | const factory = new SyncLoopHookCodeFactory(); |
nothing calls this directly
no test coverage detected