@@ -5561,7 +5561,7 @@ static void mark_children(JSRuntime *rt, JSGCObjectHeader *gp,
5561
5561
{
5562
5562
JSShape **shape, *(*shapes)[IC_CACHE_ITEM_CAPACITY];
5563
5563
JSFunctionBytecode *b = (JSFunctionBytecode *)gp;
5564
- int i, j ;
5564
+ int i;
5565
5565
for(i = 0; i < b->cpool_count; i++) {
5566
5566
JS_MarkValue(rt, b->cpool[i], mark_func);
5567
5567
}
@@ -36210,7 +36210,7 @@ static const JSCFunctionListEntry js_error_proto_funcs[] = {
36210
36210
36211
36211
static JSValue js_error_get_stackTraceLimit(JSContext *ctx, JSValue this_val)
36212
36212
{
36213
- JSValue val, ret ;
36213
+ JSValue val;
36214
36214
36215
36215
val = JS_ToObject(ctx, this_val);
36216
36216
if (JS_IsException(val))
@@ -36232,7 +36232,7 @@ static JSValue js_error_set_stackTraceLimit(JSContext *ctx, JSValue this_val, JS
36232
36232
36233
36233
static JSValue js_error_get_prepareStackTrace(JSContext *ctx, JSValue this_val)
36234
36234
{
36235
- JSValue val, ret ;
36235
+ JSValue val;
36236
36236
36237
36237
val = JS_ToObject(ctx, this_val);
36238
36238
if (JS_IsException(val))
@@ -48764,7 +48764,7 @@ static JSValue js_typed_array_at(JSContext *ctx, JSValue this_val,
48764
48764
static JSValue js_typed_array_with(JSContext *ctx, JSValue this_val,
48765
48765
int argc, JSValue *argv)
48766
48766
{
48767
- JSValue arr, val, ret ;
48767
+ JSValue arr, val;
48768
48768
JSObject *p;
48769
48769
int64_t idx, len;
48770
48770
@@ -51645,7 +51645,7 @@ int resize_ic_hash(JSContext *ctx, JSInlineCache *ic)
51645
51645
51646
51646
int free_ic(JSRuntime* rt, JSInlineCache *ic)
51647
51647
{
51648
- uint32_t i, j ;
51648
+ uint32_t i;
51649
51649
JSInlineCacheHashSlot *ch, *ch_next;
51650
51650
JSShape **shape, *(*shapes)[IC_CACHE_ITEM_CAPACITY];
51651
51651
if (ic->cache) {
0 commit comments