diff options
author | Kasper Isager Dalsgarð <kasperisager@hey.com> | 2024-05-09 12:45:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-09 12:45:47 +0200 |
commit | 6f9d05fd2b9de2f132b22518dabf201cea1c4fba (patch) | |
tree | 92151bb40855493bd58c881459e269d5ad3bfe1f /quickjs.c | |
parent | d53aafe0f30f8aee36fb600d8f578baef1a49a72 (diff) | |
download | quickjs-6f9d05fd2b9de2f132b22518dabf201cea1c4fba.tar.gz quickjs-6f9d05fd2b9de2f132b22518dabf201cea1c4fba.zip |
Expose `JS_SetUncatchableError()` (#262)
* Expose `JS_SetUncatchableError()`
* Remove unnecessary `JS_SetUncatchableError` declaration
Diffstat (limited to 'quickjs.c')
-rw-r--r-- | quickjs.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1276,7 +1276,6 @@ static JSValue js_module_ns_autoinit(JSContext *ctx, JSObject *p, JSAtom atom, void *opaque); static JSValue JS_InstantiateFunctionListItem2(JSContext *ctx, JSObject *p, JSAtom atom, void *opaque); -void JS_SetUncatchableError(JSContext *ctx, JSValueConst val, BOOL flag); static JSValue js_object_groupBy(JSContext *ctx, JSValueConst this_val, int argc, JSValueConst *argv, int is_map); |