chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.debugger / Scope

Scope

data class Scope

Scope description.

Constructors

<init>

Scope description.

Scope(type: String, object: RemoteObject, name: String? = null, startLocation: Location? = null, endLocation: Location? = null)

Properties

endLocation

Location in the source code where scope ends

val endLocation: Location?

name

val name: String?

object

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.

val object: RemoteObject

startLocation

Location in the source code where scope starts

val startLocation: Location?

type

Scope type.

val type: String