summaryrefslogtreecommitdiff
path: root/quickjs.c
diff options
context:
space:
mode:
authorKasper Isager Dalsgarð <kasperisager@hey.com>2024-05-09 12:45:47 +0200
committerGitHub <noreply@github.com>2024-05-09 12:45:47 +0200
commit6f9d05fd2b9de2f132b22518dabf201cea1c4fba (patch)
tree92151bb40855493bd58c881459e269d5ad3bfe1f /quickjs.c
parentd53aafe0f30f8aee36fb600d8f578baef1a49a72 (diff)
downloadquickjs-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.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/quickjs.c b/quickjs.c
index bbba005..fd2edd8 100644
--- a/quickjs.c
+++ b/quickjs.c
@@ -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);