mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:27:35 +00:00
LibJS: Use IntrusiveList for keeping track of WeakContainers
This commit is contained in:
parent
3fe1be20b7
commit
cdc1315dc8
5 changed files with 49 additions and 24 deletions
31
Userland/Libraries/LibJS/Runtime/WeakContainer.cpp
Normal file
31
Userland/Libraries/LibJS/Runtime/WeakContainer.cpp
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibJS/Heap/Heap.h>
|
||||
#include <LibJS/Runtime/WeakContainer.h>
|
||||
|
||||
namespace JS {
|
||||
|
||||
WeakContainer::WeakContainer(Heap& heap)
|
||||
: m_heap(heap)
|
||||
{
|
||||
m_heap.did_create_weak_container({}, *this);
|
||||
}
|
||||
|
||||
WeakContainer::~WeakContainer()
|
||||
{
|
||||
deregister();
|
||||
}
|
||||
|
||||
void WeakContainer::deregister()
|
||||
{
|
||||
if (!m_registered)
|
||||
return;
|
||||
m_heap.did_destroy_weak_container({}, *this);
|
||||
m_registered = false;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue