mirror of
https://github.com/bellard/quickjs.git
synced 2024-11-22 21:58:12 +08:00
parent
d378a9f3a5
commit
e02472dabc
@ -6402,11 +6402,6 @@ JSValue JS_GetException(JSContext *ctx)
|
|||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
JS_BOOL JS_HasException(JSContext *ctx)
|
|
||||||
{
|
|
||||||
return !JS_IsNull(ctx->rt->current_exception);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void dbuf_put_leb128(DynBuf *s, uint32_t v)
|
static void dbuf_put_leb128(DynBuf *s, uint32_t v)
|
||||||
{
|
{
|
||||||
uint32_t a;
|
uint32_t a;
|
||||||
|
@ -633,7 +633,6 @@ static inline JS_BOOL JS_IsObject(JSValueConst v)
|
|||||||
|
|
||||||
JSValue JS_Throw(JSContext *ctx, JSValue obj);
|
JSValue JS_Throw(JSContext *ctx, JSValue obj);
|
||||||
JSValue JS_GetException(JSContext *ctx);
|
JSValue JS_GetException(JSContext *ctx);
|
||||||
JS_BOOL JS_HasException(JSContext *ctx);
|
|
||||||
JS_BOOL JS_IsError(JSContext *ctx, JSValueConst val);
|
JS_BOOL JS_IsError(JSContext *ctx, JSValueConst val);
|
||||||
void JS_SetUncatchableError(JSContext *ctx, JSValueConst val, JS_BOOL flag);
|
void JS_SetUncatchableError(JSContext *ctx, JSValueConst val, JS_BOOL flag);
|
||||||
void JS_ResetUncatchableError(JSContext *ctx);
|
void JS_ResetUncatchableError(JSContext *ctx);
|
||||||
|
Loading…
Reference in New Issue
Block a user