mirror of
https://github.com/bellard/quickjs.git
synced 2025-11-15 18:22:15 +03:00
This commit is contained in:
@@ -18011,14 +18011,15 @@ static JSValue JS_CallInternal(JSContext *caller_ctx, JSValueConst func_obj,
|
|||||||
}
|
}
|
||||||
ret = JS_SetPropertyInternal(ctx, ctx->global_obj, cv->var_name, sp[-1],
|
ret = JS_SetPropertyInternal(ctx, ctx->global_obj, cv->var_name, sp[-1],
|
||||||
ctx->global_obj, JS_PROP_THROW_STRICT);
|
ctx->global_obj, JS_PROP_THROW_STRICT);
|
||||||
|
sp--;
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto exception;
|
goto exception;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
put_var_ok:
|
put_var_ok:
|
||||||
set_value(ctx, var_ref->pvalue, sp[-1]);
|
set_value(ctx, var_ref->pvalue, sp[-1]);
|
||||||
|
sp--;
|
||||||
}
|
}
|
||||||
sp--;
|
|
||||||
}
|
}
|
||||||
BREAK;
|
BREAK;
|
||||||
CASE(OP_get_loc):
|
CASE(OP_get_loc):
|
||||||
|
|||||||
Reference in New Issue
Block a user