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:
Andreas Kling 2020-11-28 14:33:36 +01:00
commit 98f2da9834
Notes: sideshowbarker 2024-07-19 01:13:10 +09:00
32 changed files with 48 additions and 48 deletions

View file

@ -47,7 +47,7 @@ private:
friend class ArrayIteratorPrototype;
virtual bool is_array_iterator_object() const override { return true; }
virtual void visit_children(Cell::Visitor&) override;
virtual void visit_edges(Cell::Visitor&) override;
Value m_array;
Object::PropertyKind m_iteration_kind;