summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/error_cause.ts
blob: 7ebd5a48a23a824cc48648554f220a29df384b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function a() {
  throw new Error("foo", { cause: new Error("bar", { cause: "deno" }) });
}

function b() {
  a();
}

function c() {
  b();
}

c();