Reputation: 5236
I'm using Chrome's (v21) dev tools to debug a large javascript application. While stepping through the code, I'd like to change the value of a local (function scope) variable. How do I do this?
I've tried:
Again, this is a local, function-scoped variable, and the current line of execution is within the same scope where the variable was defined.
This other question is essentially a duplicate, but hasn't elicited any useful answers (maybe because it's poorly written).
Upvotes: 11
Views: 9335
Reputation: 671
This apparently got fixed eventually. From the issue that @gabrielmaldi linked issue 124206:
Comment 29 by [email protected] on Wed, May 4, 2016, 3:19 PM EDT 51.0.2696.0 is the first [development] version that includes a build of v8 that incorporates a fix for this regression (v8 version 5.1.224 includes this fix, and 51.0.2696.0 targets v8 version 5.1.227.1).
Upvotes: 1
Reputation: 1040
This feature is yet to be implemented. It is absolutely reasonable thing to do, hopefully it will be implemented soon in V8–protocol–devtools.
Upvotes: 2