LibJS+LibWeb: Use new Cell::Visitor helpers to avoid manual iteration

This commit is contained in:
Andreas Kling 2024-04-15 13:58:21 +02:00
parent 1a6d025793
commit 53d0dd4a2e
Notes: sideshowbarker 2024-07-17 20:58:35 +09:00
63 changed files with 98 additions and 213 deletions

View file

@ -68,12 +68,9 @@ void ResizeObserverEntry::visit_edges(JS::Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
visitor.visit(m_target);
for (auto& size : m_content_box_size)
visitor.visit(size);
for (auto& size : m_border_box_size)
visitor.visit(size);
for (auto& size : m_device_pixel_content_box_size)
visitor.visit(size);
visitor.visit(m_content_box_size);
visitor.visit(m_border_box_size);
visitor.visit(m_device_pixel_content_box_size);
visitor.visit(m_content_rect);
}