-
-
Notifications
You must be signed in to change notification settings - Fork 675
Closed
Description
I need to create wasm modules that would adapt to some rigid environment (i.e. the set of things I can import is known and fixed). I'd like to use exceptions (idiomatic!), but they are implemented via an abort()
hook currently.
It seems (
Line 663 in ebae7cb
// register 'abort' if present |
@global export function abort
doesn't seem to do the trick).
Is there a way? Am I missing something? This should be documented in the Wiki, probably.