mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00

Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
32 lines
491 B
C++
32 lines
491 B
C++
/*
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace GC {
|
|
|
|
class Cell;
|
|
class CellAllocator;
|
|
class DeferGC;
|
|
class RootImpl;
|
|
class Heap;
|
|
class HeapBlock;
|
|
class NanBoxedValue;
|
|
class WeakContainer;
|
|
|
|
template<typename T>
|
|
class Function;
|
|
|
|
template<class T>
|
|
class Root;
|
|
|
|
template<class T, size_t inline_capacity = 0>
|
|
class ConservativeVector;
|
|
|
|
template<class T, size_t inline_capacity = 0>
|
|
class MarkedVector;
|
|
|
|
}
|