mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-27 03:14:15 +00:00
32 lines
531 B
C++
32 lines
531 B
C++
|
|
/*
|
||
|
|
* 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;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|