LibCore: Stop obsessing about tiny OOMs in Core::Timer

Work towards #20405
This commit is contained in:
Andreas Kling 2024-04-16 20:34:01 +02:00
commit 1cb5385a29
Notes: sideshowbarker 2024-07-16 21:39:23 +09:00
52 changed files with 111 additions and 113 deletions

View file

@ -26,7 +26,7 @@ Timer::Timer(JS::Object& window_or_worker_global_scope, i32 milliseconds, JS::No
{
m_timer = Core::Timer::create_single_shot(milliseconds, [this] {
m_callback->function()();
}).release_value_but_fixme_should_propagate_errors();
});
}
void Timer::visit_edges(Cell::Visitor& visitor)