// 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. #ifndef V8_CODEGEN_BACKGROUND_MERGE_TASK_H_ #define V8_CODEGEN_BACKGROUND_MERGE_TASK_H_ #include <vector> #include "src/handles/maybe-handles.h" namespace v8 { namespace internal { class FeedbackMetadata; class PersistentHandles; class Script; class SharedFunctionInfo; class String; struct ScriptDetails; // Contains data transferred between threads for background merging between a // newly compiled or deserialized script and an existing script from the Isolate // compilation cache. class V8_EXPORT_PRIVATE BackgroundMergeTask { … }; } // namespace internal } // namespace v8 #endif // V8_CODEGEN_BACKGROUND_MERGE_TASK_H_