libquickjs-ng-sys 0.13.0

QuickJS-NG Javascript Engine FFI bindings
Documentation
1
2
3
4
5
6
7
/*---
flags: [qjs:track-promise-rejections]
---*/

// import() of a throwing module must not leak the module's internal rejection.
const error = await import("./fixture_throwing_module.js").then(() => 'ok', e => e)
print('Got this error:', error.message)