Compare commits

...

2 Commits

Author SHA1 Message Date
Dylan Conway
61f8e5ce8c update 2024-10-16 20:06:04 -07:00
Dylan Conway
b94ea3a1f4 flush entire immediate queue 2024-10-16 19:06:40 -07:00
2 changed files with 4 additions and 0 deletions

View File

@@ -1395,6 +1395,8 @@ pub const EventLoop = struct {
}
this.flushImmediateQueue();
this.tickImmediateTasks(ctx);
ctx.onAfterEventLoop();
}
@@ -1472,6 +1474,7 @@ pub const EventLoop = struct {
}
this.flushImmediateQueue();
this.tickImmediateTasks(ctx);
ctx.onAfterEventLoop();
}

View File

@@ -1265,6 +1265,7 @@ pub const TestCommand = struct {
}
vm.eventLoop().flushImmediateQueue();
vm.eventLoop().tickImmediateTasks(vm);
switch (vm.aggressive_garbage_collection) {
.none => {},