Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build backtrace in JS_NewError #809

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions quickjs.c
Original file line number Diff line number Diff line change
Expand Up @@ -6821,7 +6821,11 @@ static BOOL is_backtrace_needed(JSContext *ctx, JSValue obj)

JSValue JS_NewError(JSContext *ctx)
{
return JS_NewObjectClass(ctx, JS_CLASS_ERROR);
JSValue obj = JS_NewObjectClass(ctx, JS_CLASS_ERROR);
if (JS_IsException(obj))
return JS_EXCEPTION;
build_backtrace(ctx, obj, JS_UNDEFINED, NULL, 0, 0, 0);
return obj;
}

static JSValue JS_MakeError(JSContext *ctx, JSErrorEnum error_num,
Expand All @@ -6830,7 +6834,7 @@ static JSValue JS_MakeError(JSContext *ctx, JSErrorEnum error_num,
JSValue obj, msg;

if (error_num == JS_PLAIN_ERROR) {
obj = JS_NewError(ctx);
obj = JS_NewObjectClass(ctx, JS_CLASS_ERROR);
} else {
obj = JS_NewObjectProtoClass(ctx, ctx->native_error_proto[error_num],
JS_CLASS_ERROR);
Expand Down
Loading