mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
32 lines
589 B
C++
32 lines
589 B
C++
/*
|
|
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Runtime/WeakMap.h>
|
|
|
|
namespace JS {
|
|
|
|
WeakMap* WeakMap::create(GlobalObject& global_object)
|
|
{
|
|
return global_object.heap().allocate<WeakMap>(global_object, *global_object.weak_map_prototype());
|
|
}
|
|
|
|
WeakMap::WeakMap(Object& prototype)
|
|
: Object(prototype)
|
|
, WeakContainer(heap())
|
|
{
|
|
}
|
|
|
|
WeakMap::~WeakMap()
|
|
{
|
|
}
|
|
|
|
void WeakMap::remove_sweeped_cells(Badge<Heap>, Vector<Cell*>& cells)
|
|
{
|
|
for (auto* cell : cells)
|
|
m_values.remove(cell);
|
|
}
|
|
|
|
}
|