(message: string, f: () => T)
| 30 | } |
| 31 | |
| 32 | function callAndReportFailure<T>(message: string, f: () => T): T | never { |
| 33 | try { |
| 34 | return f(); |
| 35 | } catch (e) { |
| 36 | return failWith(message, { error: e }); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | export function exec( |
| 41 | s: string, |
no test coverage detected
searching dependent graphs…