mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:48:11 +00:00
LibJS+LibWeb: Explicitly mark ignored members in visit_edges methods
This commit is contained in:
parent
39d8c8d2a9
commit
a9d192e882
4 changed files with 13 additions and 0 deletions
|
@ -44,6 +44,10 @@ void Worker::visit_edges(Cell::Visitor& visitor)
|
|||
visitor.visit(m_inner_settings);
|
||||
visitor.visit(m_implicit_port);
|
||||
visitor.visit(m_outside_port);
|
||||
|
||||
// These are in a separate VM and shouldn't be visited
|
||||
visitor.ignore(m_worker_realm);
|
||||
visitor.ignore(m_worker_scope);
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/workers.html#dom-worker
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue