1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 18:08:12 +00:00

LibJS: Rename collect_roots() => gather_roots()

Since this is about finding the things we should *not* garabge collect,
it seemed wrong to call it "collect_something" :^)
This commit is contained in:
Andreas Kling 2020-03-15 15:12:34 +01:00
parent 8dc6416bba
commit f1f14945cf
4 changed files with 6 additions and 6 deletions

View file

@ -136,7 +136,7 @@ Value Interpreter::get_variable(const String& name)
return global_object().get(name);
}
void Interpreter::collect_roots(Badge<Heap>, HashTable<Cell*>& roots)
void Interpreter::gather_roots(Badge<Heap>, HashTable<Cell*>& roots)
{
roots.set(m_global_object);
roots.set(m_string_prototype);