CallFrame

sealed external interface CallFrame(source)

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

Properties

Link copied to clipboard
abstract var callFrameId: CallFrameId

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

Link copied to clipboard
abstract var functionLocation: Location?

Location in the source code.

Link copied to clipboard
abstract var functionName: String

Name of the JavaScript function called on this call frame.

Link copied to clipboard
abstract var location: Location

Location in the source code.

Link copied to clipboard
abstract var returnValue: RemoteObject?

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
abstract var this: RemoteObject

this object for this call frame.

Link copied to clipboard
abstract var url: String

JavaScript script name or url.