summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Heap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibJS/Heap.cpp')
-rw-r--r--Libraries/LibJS/Heap.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Libraries/LibJS/Heap.cpp b/Libraries/LibJS/Heap.cpp
index c7419f4d0d..84a7c7b371 100644
--- a/Libraries/LibJS/Heap.cpp
+++ b/Libraries/LibJS/Heap.cpp
@@ -62,14 +62,14 @@ Cell* Heap::allocate_cell(size_t size)
void Heap::collect_garbage()
{
HashTable<Cell*> roots;
- collect_roots(roots);
+ gather_roots(roots);
mark_live_cells(roots);
sweep_dead_cells();
}
-void Heap::collect_roots(HashTable<Cell*>& roots)
+void Heap::gather_roots(HashTable<Cell*>& roots)
{
- m_interpreter.collect_roots({}, roots);
+ m_interpreter.gather_roots({}, roots);
#ifdef HEAP_DEBUG
dbg() << "collect_roots:";