// 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_BASELINE_BYTECODE_OFFSET_ITERATOR_H_ #define V8_BASELINE_BYTECODE_OFFSET_ITERATOR_H_ #include <optional> #include "src/base/vlq.h" #include "src/common/globals.h" #include "src/interpreter/bytecode-array-iterator.h" #include "src/objects/bytecode-array.h" namespace v8 { namespace internal { class BytecodeArray; namespace baseline { class V8_EXPORT_PRIVATE BytecodeOffsetIterator { … }; } // namespace baseline } // namespace internal } // namespace v8 #endif // V8_BASELINE_BYTECODE_OFFSET_ITERATOR_H_