- Debug the following program
var text = "some text";
debugger;
- In repl or watch expressions do
text = "new value"
- Notice how the variables view shows a stale value for
text - VSCode is sending a variables request but the node debug is responding with stale results
Also happening for node2 @roblourens
We would need to drop all cached variables on evaluation request, though not sure how expensive that is.
text = "new value"text- VSCode is sending avariablesrequest but the node debug is responding with stale resultsAlso happening for node2 @roblourens
We would need to drop all cached variables on evaluation request, though not sure how expensive that is.