chromium/v8/src/handles/global-handles-inl.h

// Copyright 2021 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_HANDLES_GLOBAL_HANDLES_INL_H_
#define V8_HANDLES_GLOBAL_HANDLES_INL_H_

#include "src/handles/global-handles.h"
#include "src/handles/handles-inl.h"
#include "src/objects/heap-object-inl.h"
#include "src/objects/tagged.h"

namespace v8 {
namespace internal {

template <typename T>
Handle<T> GlobalHandles::Create(Tagged<T> value) {}

template <typename T>
Tagged<T> GlobalHandleVector<T>::Pop() {}

template <typename T>
GlobalHandleVector<T>::GlobalHandleVector(LocalHeap* local_heap)
    :{}

template <typename T>
GlobalHandleVector<T>::GlobalHandleVector(Heap* heap)
    :{}

}  // namespace internal
}  // namespace v8

#endif  // V8_HANDLES_GLOBAL_HANDLES_INL_H_