pl.wendigo.chrome.api.debugger / CallFrame

CallFrame

data class CallFrame (source)

JavaScript call frame. Array of call frames form the call stack.

Link
Debugger#CallFrame type documentation.

Constructors

<init>

CallFrame(callFrameId: CallFrameId, functionName: String, functionLocation: Location? = null, location: Location, url: String, scopeChain: List<Scope>, _this: RemoteObject, returnValue: RemoteObject? = null)

JavaScript call frame. Array of call frames form the call stack.

Properties

_this

val _this: RemoteObject

this object for this call frame.

callFrameId

val callFrameId: CallFrameId

Call frame identifier. This identifier is only valid while the virtual machine is paused.

functionLocation

val functionLocation: Location?

Location in the source code.

functionName

val functionName: String

Name of the JavaScript function called on this call frame.

location

val location: Location

Location in the source code.

returnValue

val returnValue: RemoteObject?

The value being returned, if the function is at return point.

scopeChain

val scopeChain: List<Scope>

Scope chain for this call frame.

url

val url: String

JavaScript script name or url.