debuggerSetVariableValue
Set a variable's value in a stopped debugger session to alter program flow and reach branches otherwise inaccessible.
Instructions
Change a variable in the stopped process, as the debugger lets you. The program then carries on with the new value, which is a way to reach a branch that the data would not otherwise reach - and a way to make a productive program do something it never would. Only for a session you are deliberately steering.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | The new value of the variable. | |
| variableName | Yes | The name of the variable. |