LibWeb: Visit proper base class in SyntheticHostDefined

This was a goof of mine from when I added a common HostDefined base
class.
This commit is contained in:
Shannon Booth 2024-11-27 05:58:06 +13:00 committed by Andreas Kling
parent b39f4f0b5a
commit 27f1e3676f
Notes: github-actions[bot] 2024-11-30 11:07:50 +00:00

View file

@ -13,7 +13,7 @@ namespace Web::Bindings {
void SyntheticHostDefined::visit_edges(JS::Cell::Visitor& visitor)
{
JS::Realm::HostDefined::visit_edges(visitor);
HostDefined::visit_edges(visitor);
synthetic_realm_settings.visit_edges(visitor);
}