CallFrame

@native @JSType trait CallFrame extends StObject

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

Companion
object
trait StObject
class Object
trait Any
class Object
trait Matchable
class Any

Value members

Inherited methods

def hasOwnProperty(v: String): Boolean
Inherited from
Object
def isPrototypeOf(v: Object): Boolean
Inherited from
Object
def propertyIsEnumerable(v: String): Boolean
Inherited from
Object
def toLocaleString(): String
Inherited from
Object
def valueOf(): Any
Inherited from
Object

Concrete fields

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

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

var functionLocation: UndefOr[Location]

Location in the source code.

Location in the source code.

var functionName: String

Name of the JavaScript function called on this call frame.

Name of the JavaScript function called on this call frame.

Location in the source code.

Location in the source code.

var returnValue: UndefOr[RemoteObject]

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

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

var scopeChain: Array[Scope]

Scope chain for this call frame.

Scope chain for this call frame.

<code>this</code> object for this call frame.

<code>this</code> object for this call frame.

var url: String

JavaScript script name or url.

JavaScript script name or url.