// Copyright 2020 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. #include "src/heap/cppgc/raw-heap.h" #include "src/heap/cppgc/heap-space.h" namespace cppgc { namespace internal { // static constexpr size_t RawHeap::kNumberOfRegularSpaces; RawHeap::RawHeap( HeapBase* heap, const std::vector<std::unique_ptr<CustomSpaceBase>>& custom_spaces) : … { … } RawHeap::~RawHeap() = default; } // namespace internal } // namespace cppgc