mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
LibJS: Rename Cell::visit_children() => Cell::visit_edges()
The GC heap is really a graph of cells, so "children" didn't quite feel appropriate here.
This commit is contained in:
@@ -48,9 +48,9 @@ SymbolObject::~SymbolObject()
|
||||
{
|
||||
}
|
||||
|
||||
void SymbolObject::visit_children(Cell::Visitor& visitor)
|
||||
void SymbolObject::visit_edges(Cell::Visitor& visitor)
|
||||
{
|
||||
Object::visit_children(visitor);
|
||||
Object::visit_edges(visitor);
|
||||
visitor.visit(&m_symbol);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user