dokar3 / quickjs-kt

A QuickJS binding for idiomatic Kotlin, with Async/DSL/ES Modules support.
Apache License 2.0
41 stars 3 forks source link

Correct error handling for async functions #30

Closed dokar3 closed 7 months ago

dokar3 commented 7 months ago

Currently, all jobs will get canceled if one throws an error, regardless of whether they have been caught in JavaScript.

The behavior needs to be implemented correctly.

Related to #12