// 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_CODEGEN_SCRIPT_DETAILS_H_ #define V8_CODEGEN_SCRIPT_DETAILS_H_ #include "include/v8-script.h" #include "src/common/globals.h" #include "src/objects/fixed-array.h" #include "src/objects/objects.h" namespace v8 { namespace internal { struct ScriptDetails { … }; void SetScriptFieldsFromDetails(Isolate* isolate, Tagged<Script> script, const ScriptDetails& script_details, DisallowGarbageCollection* no_gc); } // namespace internal } // namespace v8 #endif // V8_CODEGEN_SCRIPT_DETAILS_H_