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

SetVariableValueRequest

data class SetVariableValueRequest

Request object containing input parameters for the DebuggerDomain.setVariableValue command.

Constructors

<init>

Request object containing input parameters for the DebuggerDomain.setVariableValue command.

SetVariableValueRequest(scopeNumber: Int, variableName: String, newValue: CallArgument, callFrameId: CallFrameId)

Properties

callFrameId

Id of callframe that holds variable.

val callFrameId: CallFrameId

newValue

New variable value.

val newValue: CallArgument

scopeNumber

0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.

val scopeNumber: Int

variableName

Variable name.

val variableName: String