chromium/v8/src/objects/bytecode-array.cc

// Copyright 2023 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/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) {}

// static
void BytecodeArray::Disassemble(Handle<BytecodeArray> handle,
                                std::ostream& os) {}

void BytecodeArray::CopyBytecodesTo(Tagged<BytecodeArray> to) {}

}  // namespace internal
}  // namespace v8