deno/cli/tests/error_020_stack_constructor.ts

13 lines
151 B
TypeScript

class A {
constructor() {
throw new Error("constructor");
}
}
try {
new A();
} catch (error) {
console.log(error.stack);
throw error;
}