index
:
deno.git
main
Unnamed repository; edit this file 'description' to name the repository.
User &
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
specs
/
run
/
error_cause_recursive
/
error_cause_recursive.ts
blob: a6999b1ff06996c5cd37747af11708459d206543 (
plain
)
1
2
3
4
const x = new Error("foo"); const y = new Error("bar", { cause: x }); x.cause = y; throw y;