interface Debugger.CallFrame
JavaScript call frame. Array of call frames form the call stack.
Properties Jump to heading
Call frame identifier. This identifier is only valid while the virtual machine is paused.
Jump to headingfunctionName: stringName of the JavaScript function called on this call frame.
optional
Jump to headingfunctionLocation: Location | undefinedLocation in the source code.
Location in the source code.
Jump to headingurl: stringJavaScript script name or url.
Scope chain for this call frame.
this object for this call frame.
optional
Jump to headingreturnValue: Runtime.RemoteObject | undefinedThe value being returned, if the function is at return point.