mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:47:34 +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:
parent
97a05ac9ac
commit
98f2da9834
32 changed files with 48 additions and 48 deletions
|
@ -66,7 +66,7 @@ public:
|
|||
(void)vm().call(*m_setter, this_value, setter_value);
|
||||
}
|
||||
|
||||
void visit_children(Cell::Visitor& visitor) override
|
||||
void visit_edges(Cell::Visitor& visitor) override
|
||||
{
|
||||
visitor.visit(m_getter);
|
||||
visitor.visit(m_setter);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue