chromium/v8/src/logging/local-logger.cc

// Copyright 2020 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/logging/local-logger.h"

#include "src/execution/isolate.h"
#include "src/objects/map.h"

namespace v8 {
namespace internal {

// TODO(leszeks): Add support for logging from off-thread.
LocalLogger::LocalLogger(Isolate* isolate)
    :{}

void LocalLogger::ScriptDetails(Tagged<Script> script) {}
void LocalLogger::ScriptEvent(ScriptEventType type, int script_id) {}
void LocalLogger::CodeLinePosInfoRecordEvent(
    Address code_start, Tagged<TrustedByteArray> source_position_table,
    JitCodeEvent::CodeType code_type) {}

void LocalLogger::MapCreate(Tagged<Map> map) {}

void LocalLogger::MapDetails(Tagged<Map> map) {}

}  // namespace internal
}  // namespace v8