[This is preliminary documentation and is subject to change.]
The CefV8StackFrame type exposes the following members.Properties
Name | Description | |
---|---|---|
Column |
Returns the 1-based column offset on the line for the function call or 0 if
unknown.
| |
FunctionName |
Returns the name of the function.
| |
IsConstructor |
Returns true if the function was called as a constructor via "new".
| |
IsEval |
Returns true if the function was compiled using eval().
| |
IsValid |
Returns true if the underlying handle is valid and it can be accessed on
the current thread. Do not call any other methods if this method returns
false.
| |
LineNumber |
Returns the 1-based line number for the function call or 0 if unknown.
| |
ScriptName |
Returns the name of the resource script that contains the function.
| |
ScriptNameOrSourceUrl |
Returns the name of the resource script that contains the function or the
sourceURL value if the script name is undefined and its source ends with
a "//@ sourceURL=..." string.
|
See Also