SetVariableValueParameter

@Serializable
data class SetVariableValueParameter(val scopeNumber: Int, val variableName: String, val newValue: Runtime.CallArgument, val callFrameId: String)

Constructors

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

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.