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

Add missing return to runConnection #159

Closed jalissia closed 4 years ago

jalissia commented 4 years ago

This PR adds in a missing return statement to the runConnection() function.

Unfortunately the new edgeChromiumDebugAdapter was throwing an error when not using WebView2 debugging. This was due to the runConnection override returning undefined as it was calling the super class but forgetting to return the result.