microsoft / vscode-edge-debug2

This is a VS Code extension which helps you debug your JavaScript Code inside the Edge browser.
Other
37 stars 31 forks source link

When debugging, typing a console function call in the debug console disconnects the debug session #101

Open rakatyal opened 6 years ago

rakatyal commented 6 years ago

When debugging. if we try to call a console function, the debugging session is shut down. This should not happen.

In chrome, doing the same operation just outputs undefined, but in Edge it shuts down and then says undefined.

For example, if you try console.clear it will provide you the details of the clear function, but if you try calling it from the console by console.clear(), the debugging session shuts down.