Scope

@Serializable
data class Scope(val type: String, val object: Runtime.RemoteObject, val name: String? = null, val startLocation: Debugger.Location? = null, val endLocation: Debugger.Location? = null)

Scope description.

Constructors

Link copied to clipboard
constructor(type: String, object: Runtime.RemoteObject, name: String? = null, startLocation: Debugger.Location? = null, endLocation: Debugger.Location? = null)

Properties

Link copied to clipboard

Location in the source code where scope ends

Link copied to clipboard
val name: String? = null
Link copied to clipboard

Object representing the scope. For global and with scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties.

Link copied to clipboard

Location in the source code where scope starts

Link copied to clipboard

Scope type.