Files
bun.sh/test/macro/assert.tsx
2022-06-22 23:21:48 -07:00

5 lines
142 B
TypeScript

// This logs the result at build time
export function unreachable(call) {
throw new Error(call.arguments[0].toString() || "unreachable");
}