#ifndef V8_PROFILER_PROFILE_GENERATOR_INL_H_
#define V8_PROFILER_PROFILE_GENERATOR_INL_H_
#include "src/profiler/profile-generator.h"
#include <memory>
namespace v8 {
namespace internal {
CodeEntry::CodeEntry(LogEventListener::CodeTag tag, const char* name,
const char* resource_name, int line_number,
int column_number,
std::unique_ptr<SourcePositionTable> line_info,
bool is_shared_cross_origin, CodeType code_type)
: … { … }
ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry,
ProfileNode* parent, int line_number)
: … { … }
inline Isolate* ProfileNode::isolate() const { … }
}
}
#endif