(label: string, store: string[])
| 26 | } from '#/errors/unexpectedError'; |
| 27 | |
| 28 | function makeRecorder(label: string, store: string[]): IDisposable { |
| 29 | return { |
| 30 | dispose() { |
| 31 | store.push(label); |
| 32 | }, |
| 33 | }; |
| 34 | } |
| 35 | |
| 36 | function makeThrower(message: string): IDisposable { |
| 37 | return { |
no outgoing calls
no test coverage detected