// 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. #ifndef V8_HEAP_CPPGC_GARBAGE_COLLECTOR_H_ #define V8_HEAP_CPPGC_GARBAGE_COLLECTOR_H_ #include <optional> #include "include/cppgc/common.h" #include "src/heap/cppgc/heap-config.h" namespace cppgc { namespace internal { // GC interface that allows abstraction over the actual GC invocation. This is // needed to mock/fake GC for testing. class GarbageCollector { … }; } // namespace internal } // namespace cppgc #endif // V8_HEAP_CPPGC_GARBAGE_COLLECTOR_H_