#include "src/objects/bytecode-array.h"
#include <iomanip>
#include "src/codegen/handler-table.h"
#include "src/codegen/source-position-table.h"
#include "src/common/globals.h"
#include "src/interpreter/bytecode-array-iterator.h"
#include "src/interpreter/bytecode-decoder.h"
#include "src/objects/bytecode-array-inl.h"
#include "src/utils/memcopy.h"
namespace v8 {
namespace internal {
int BytecodeArray::SourcePosition(int offset) const { … }
int BytecodeArray::SourceStatementPosition(int offset) const { … }
void BytecodeArray::PrintJson(std::ostream& os) { … }
void BytecodeArray::Disassemble(std::ostream& os) { … }
void BytecodeArray::Disassemble(Handle<BytecodeArray> handle,
std::ostream& os) { … }
void BytecodeArray::CopyBytecodesTo(Tagged<BytecodeArray> to) { … }
}
}