
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
30 lines
630 B
C++
30 lines
630 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Heap/Heap.h>
|
|
#include <LibJS/Runtime/MarkedValueList.h>
|
|
|
|
namespace JS {
|
|
|
|
MarkedValueList::MarkedValueList(Heap& heap)
|
|
: m_heap(heap)
|
|
{
|
|
m_heap.did_create_marked_value_list({}, *this);
|
|
}
|
|
|
|
MarkedValueList::MarkedValueList(MarkedValueList&& other)
|
|
: Vector<Value, 32>(move(static_cast<Vector<Value, 32>&>(other)))
|
|
, m_heap(other.m_heap)
|
|
{
|
|
m_heap.did_create_marked_value_list({}, *this);
|
|
}
|
|
|
|
MarkedValueList::~MarkedValueList()
|
|
{
|
|
m_heap.did_destroy_marked_value_list({}, *this);
|
|
}
|
|
|
|
}
|