v8 API Deep Dive

CpuProfileNode

v8

// include/v8-profiler.h
class V8_EXPORT CpuProfileNode {
 public:
  [ .. ]

  Local<String> GetFunctionName() const;

  int GetScriptId() const;

  Local<String> GetScriptResourceName() const;

  int GetLineNumber() const;

  int GetColumnNumber() const;

  unsigned int GetHitLineCount() const;

  bool GetLineTicks(LineTick* entries, unsigned int length) const;

  const char* GetBailoutReason() const;
  [ .. ]
};

Node.js v6 source