LibJS+LibWeb: Normalize calls to Base::visit_edges in GC objects

This commit is contained in:
Matthew Olsson 2023-03-20 13:37:11 -07:00 committed by Andreas Kling
commit 82eeee2008
Notes: sideshowbarker 2024-07-17 01:10:58 +09:00
17 changed files with 20 additions and 15 deletions

View file

@ -15,7 +15,7 @@ namespace JS {
void PromiseValueList::visit_edges(Visitor& visitor)
{
Cell::visit_edges(visitor);
Base::visit_edges(visitor);
for (auto& val : m_values)
visitor.visit(val);
}