mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +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
Notes:
sideshowbarker
2024-07-19 01:13:10 +09:00
Author: https://github.com/awesomekling
Commit: 98f2da9834
32 changed files with 48 additions and 48 deletions
|
@ -46,9 +46,9 @@ Exception::~Exception()
|
|||
{
|
||||
}
|
||||
|
||||
void Exception::visit_children(Visitor& visitor)
|
||||
void Exception::visit_edges(Visitor& visitor)
|
||||
{
|
||||
Cell::visit_children(visitor);
|
||||
Cell::visit_edges(visitor);
|
||||
visitor.visit(m_value);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue