Public Member Functions

v8::StackFrame Class Reference

#include <v8.h>

List of all members.

Public Member Functions

int GetLineNumber () const
int GetColumn () const
Local< StringGetScriptName () const
Local< StringGetScriptNameOrSourceURL () const
Local< StringGetFunctionName () const
bool IsEval () const
bool IsConstructor () const

Detailed Description

A single JavaScript stack frame.


Member Function Documentation

int v8::StackFrame::GetColumn (  )  const

Returns the 1-based column offset on the line for the associated function call. This method will return Message::kNoColumnInfo if it is unable to retrieve the column number, or if kColumnOffset was not passed as an option when capturing the StackTrace.

Local<String> v8::StackFrame::GetFunctionName (  )  const

Returns the name of the function associated with this stack frame.

int v8::StackFrame::GetLineNumber (  )  const

Returns the number, 1-based, of the line for the associate function call. This method will return Message::kNoLineNumberInfo if it is unable to retrieve the line number, or if kLineNumber was not passed as an option when capturing the StackTrace.

Local<String> v8::StackFrame::GetScriptName (  )  const

Returns the name of the resource that contains the script for the function for this StackFrame.

Local<String> v8::StackFrame::GetScriptNameOrSourceURL (  )  const

Returns the name of the resource that contains the script for the function for this StackFrame or sourceURL value if the script name is undefined and its source ends with //@ sourceURL=... string.

bool v8::StackFrame::IsConstructor (  )  const

Returns whether or not the associated function is called as a constructor via "new".

bool v8::StackFrame::IsEval (  )  const

Returns whether or not the associated function is compiled via a call to eval().


The documentation for this class was generated from the following file: