deno/tests/018_async_catch.ts

15 lines
311 B
TypeScript
Raw Normal View History

2018-10-12 18:22:52 +00:00
async function fn() {
throw new Error("message");
}
async function call() {
try {
console.log("before await fn()");
await fn();
console.log("after await fn()");
} catch (error) {
console.log("catch");
}
console.log("after try-catch");
}
call().catch(() => console.log("outer catch"));