CallFrame
@Serializable
JavaScript call frame. Array of call frames form the call stack.
Constructors
Link copied to clipboard
constructor(callFrameId: String, functionName: String, functionLocation: Debugger.Location? = null, location: Debugger.Location, url: String, scopeChain: List<Debugger.Scope>, this: Runtime.RemoteObject, returnValue: Runtime.RemoteObject? = null, canBeRestarted: Boolean? = null)
Properties
Link copied to clipboard
Call frame identifier. This identifier is only valid while the virtual machine is paused.
Link copied to clipboard
Valid only while the VM is paused and indicates whether this frame can be restarted or not. Note that a true
value here does not guarantee that Debugger#restartFrame with this CallFrameId will be successful, but it is very likely.
Link copied to clipboard
Location in the source code.
Link copied to clipboard
Name of the JavaScript function called on this call frame.
Link copied to clipboard
Location in the source code.
Link copied to clipboard
The value being returned, if the function is at return point.
Link copied to clipboard
Scope chain for this call frame.
Link copied to clipboard
this
object for this call frame.