mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 03:37:53 +00:00
LibWeb: Add missing visit_edges implementation to ModuleNamespaceObject
This commit is contained in:
committed by
Andreas Kling
parent
42853fb980
commit
f357998e81
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user