mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 12:18:25 +00:00
While this is used in the implementation of Runtime objects itself, Heap seems like a more appropriate home. This will also help in factoring out the GC implementation into it's own library as the heap explicitly has knowledge of WeakContainer.
32 lines
528 B
C++
32 lines
528 B
C++
/*
|
|
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Heap/Heap.h>
|
|
#include <LibJS/Heap/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;
|
|
}
|
|
|
|
}
|