data class SetVariableValueRequest
Request object containing input parameters for the DebuggerDomain.setVariableValue command.
<init> |
Request object containing input parameters for the DebuggerDomain.setVariableValue command. SetVariableValueRequest(scopeNumber: Int, variableName: String, newValue: CallArgument, callFrameId: CallFrameId) |
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 |