nodent-compiler
Version:
NoDent - Asynchronous Javascript language extensions
21 lines (17 loc) • 306 B
JavaScript
'use nodent';
async function func1() { throw new Error('func1 error'); }
async function func2() { return; }
async function test() {
try {
await func1();
} catch (err) {
throw err;
} finally {
await func2();
}
}
try {
throw await test();
} catch(ex) {
return ex.toString() ;
}