Revert "Add JS_HasException() (#265)"

This reverts commit db9dbd0a2b.
This commit is contained in:
bellard 2024-05-30 14:28:49 +02:00 committed by GitHub
parent d378a9f3a5
commit e02472dabc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View File

@ -6402,11 +6402,6 @@ JSValue JS_GetException(JSContext *ctx)
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)
{
uint32_t a;

View File

@ -633,7 +633,6 @@ static inline JS_BOOL JS_IsObject(JSValueConst v)
JSValue JS_Throw(JSContext *ctx, JSValue obj);
JSValue JS_GetException(JSContext *ctx);
JS_BOOL JS_HasException(JSContext *ctx);
JS_BOOL JS_IsError(JSContext *ctx, JSValueConst val);
void JS_SetUncatchableError(JSContext *ctx, JSValueConst val, JS_BOOL flag);
void JS_ResetUncatchableError(JSContext *ctx);