type ICefV8StackFrame = interface(ICefBaseRefCounted)
Interface representing a V8 stack frame handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_v8_capi.h">CEF source file: /include/capi/cef_v8_capi.h (cef_v8stack_frame_t))
function IsValid: Boolean; |
|
function GetScriptName: ustring; |
|
function GetScriptNameOrSourceUrl: ustring; |
|
function GetFunctionName: ustring; |
|
function GetLineNumber: Integer; |
|
function GetColumn: Integer; |
|
function IsEval: Boolean; |
|
function IsConstructor: Boolean; |
property ScriptName : ustring read GetScriptName; |
|
property ScriptNameOrSourceUrl : ustring read GetScriptNameOrSourceUrl; |
|
property FunctionName : ustring read GetFunctionName; |
|
property LineNumber : Integer read GetLineNumber; |
|
property Column : Integer read GetColumn; |
function GetScriptName: ustring; |
|
Returns the name of the resource script that contains the function. |
function GetScriptNameOrSourceUrl: ustring; |
|
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. |
function GetFunctionName: ustring; |
|
Returns the name of the function. |
function GetLineNumber: Integer; |
|
Returns the 1-based line number for the function call or 0 if unknown. |
function GetColumn: Integer; |
|
Returns the 1-based column offset on the line for the function call or 0 if unknown. |
function IsEval: Boolean; |
|
Returns true (1) if the function was compiled using eval(). |
function IsConstructor: Boolean; |
|
Returns true (1) if the function was called as a constructor via "new". |
property ScriptName : ustring read GetScriptName; |
|
Returns the name of the resource script that contains the function. |
property ScriptNameOrSourceUrl : ustring read GetScriptNameOrSourceUrl; |
|
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. |
property FunctionName : ustring read GetFunctionName; |
|
Returns the name of the function. |
property LineNumber : Integer read GetLineNumber; |
|
Returns the 1-based line number for the function call or 0 if unknown. |
property Column : Integer read GetColumn; |
|
Returns the 1-based column offset on the line for the function call or 0 if unknown. |