mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.9 KiB
1.9 KiB
Home > puppeteer > Protocol > Debugger > CallFrame
Protocol.Debugger.CallFrame interface
JavaScript call frame. Array of call frames form the call stack.
Signature:
export interface CallFrame
Properties
Property | Type | Description |
---|---|---|
callFrameId | CallFrameId | Call frame identifier. This identifier is only valid while the virtual machine is paused. |
functionLocation | Location | Location in the source code. |
functionName | string | Name of the JavaScript function called on this call frame. |
location | Location | Location in the source code. |
returnValue | Runtime.RemoteObject | The value being returned, if the function is at return point. |
scopeChain | Scope[] | Scope chain for this call frame. |
this | Runtime.RemoteObject | this object for this call frame. |
url | string | JavaScript script name or url. |