ladybird/Libraries/LibJS/Runtime/WeakSet.cpp

32 lines
620 B
C++
Raw Normal View History

2021-06-09 16:23:04 +00:00
/*
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJS/Runtime/WeakSet.h>
namespace JS {
GC_DEFINE_ALLOCATOR(WeakSet);
GC::Ref<WeakSet> WeakSet::create(Realm& realm)
2021-06-09 16:23:04 +00:00
{
return realm.create<WeakSet>(realm.intrinsics().weak_set_prototype());
2021-06-09 16:23:04 +00:00
}
WeakSet::WeakSet(Object& prototype)
: Object(ConstructWithPrototypeTag::Tag, prototype)
, WeakContainer(heap())
2021-06-09 16:23:04 +00:00
{
}
void WeakSet::remove_dead_cells(Badge<GC::Heap>)
{
m_values.remove_all_matching([](Cell* cell) {
return cell->state() != Cell::State::Live;
});
2021-06-09 16:23:04 +00:00
}
}