We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code leads to triggering of the unhandled exception handler, even though it is handled in the catch.
async function bla(){ throw new Error('bla'); } async function main(){ setTimeout(()=>console.log('timeout'), 2000); try{ await bla(); }catch(e){ console.log('catched', e); } } main();
The text was updated successfully, but these errors were encountered:
Alas this is a bug in QuickJS: bellard/quickjs#112
Sorry, something went wrong.
Is the fix something you would consider merging in txiki? Doesn't seem like quickjs is currently actively maintained?
I would yeah, but we need to check if it would actually work in our case because of we run jobs.
No branches or pull requests
The following code leads to triggering of the unhandled exception handler, even though it is handled in the catch.
The text was updated successfully, but these errors were encountered: