puppeteer/new-docs/puppeteer.protocol.debugger.callframe.md
2020-07-13 14:01:35 +01:00

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.