// Copyright 2022 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-js/unified-heap-marking-state.h" #include "src/base/logging.h" #include "src/heap/heap-inl.h" #include "src/heap/mark-compact.h" namespace v8 { namespace internal { UnifiedHeapMarkingState::UnifiedHeapMarkingState( Heap* heap, MarkingWorklists::Local* local_marking_worklist, cppgc::internal::CollectionType collection_type) : … { … } void UnifiedHeapMarkingState::Update( MarkingWorklists::Local* local_marking_worklist) { … } } // namespace internal } // namespace v8