(ms: number)
| 789 | } |
| 790 | |
| 791 | function sleepSync(ms: number): void { |
| 792 | if (ms <= 0) return; |
| 793 | Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, ms); |
| 794 | } |
| 795 | |
| 796 | function dispatchFailureError( |
| 797 | options: { dispatch: CommitFindingDispatch; repairRepo: string }, |
no outgoing calls
no test coverage detected