#include "src/logging/local-logger.h"
#include "src/execution/isolate.h"
#include "src/objects/map.h"
namespace v8 {
namespace internal {
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) { … }
}
}