mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:08:12 +00:00
LibJS: Mark forward shape transition keys
These should really be weakly held by the Shape, but we don't have a mechanism for weak hashmap keys at the moment, so let's just mark these for now so they don't go stale.
This commit is contained in:
parent
e5120ab389
commit
ef86cf4646
1 changed files with 6 additions and 0 deletions
|
@ -126,6 +126,12 @@ void Shape::visit_edges(Cell::Visitor& visitor)
|
|||
it.key.visit_edges(visitor);
|
||||
}
|
||||
visitor.ignore(m_prototype_transitions);
|
||||
|
||||
// FIXME: The forward transition keys should be weak, but we have to mark them for now in case they go stale.
|
||||
if (m_forward_transitions) {
|
||||
for (auto& it : *m_forward_transitions)
|
||||
it.key.property_key.visit_edges(visitor);
|
||||
}
|
||||
}
|
||||
|
||||
Optional<PropertyMetadata> Shape::lookup(StringOrSymbol const& property_key) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue