This is a VS Code extension which helps you debug your JavaScript Code inside the Edge browser.
37
stars
31
forks
source link
Value of edited variables briefly flash to old value after adding variable to watch panel #156
Open
Shenniey opened 5 years ago
This issue only occurs on Microsoft Edge (Chromium) and not on EdgeHTML.
Step of reproduce: (Repro Gifs has been attached)
Run below commands in a command prompt:
npm install -g @angular/cli
ng new my-app
cd my-app
ng serve
Open my-app folder in another command prompt.
Configure the Edge debugger with launch.json file.
Set breakpoint at
var a = 1;
of app.component.ts.Launch Microsoft Edge (Chromium) against localhost(F5).
Set value of variable
a
to 2.Add variable
a
to watch panel.Result: Value of edited variable changes to previous value after adding it to watch panel.
Note: if you step over onto the next line of code, the panel will display the correct value