SetVariableValueRequest

@Serializable
data class SetVariableValueRequest(val scopeNumber: Int, val variableName: String, val newValue: CallArgument, val callFrameId: CallFrameId)(source)

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

Constructors

Link copied to clipboard
constructor(scopeNumber: Int, variableName: String, newValue: CallArgument, callFrameId: CallFrameId)

Properties

Link copied to clipboard

Id of callframe that holds variable.

Link copied to clipboard

New variable value.

Link copied to clipboard

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.

Link copied to clipboard

Variable name.