LibWeb: Add missing visit_edges implementation to ModuleNamespaceObject

This commit is contained in:
Idan Horowitz
2024-04-05 20:41:08 +03:00
committed by Andreas Kling
parent 42853fb980
commit f357998e81
2 changed files with 8 additions and 1 deletions

View File

@@ -228,4 +228,10 @@ ThrowCompletionOr<MarkedVector<Value>> ModuleNamespaceObject::internal_own_prope
return exports;
}
void ModuleNamespaceObject::visit_edges(JS::Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
visitor.visit(m_module);
}
}