(x: never | undefined)
| 2 | export const snapshotVersion = '7'; |
| 3 | |
| 4 | export function assertUnreachable(x: never | undefined): never { |
| 5 | throw new Error("Didn't expect to get here"); |
| 6 | } |
| 7 | |
| 8 | // don't fail in runtime, types only |
| 9 | export function softAssertUnreachable(x: never) { |
no outgoing calls
no test coverage detected