nativescript-vscode-extension icon indicating copy to clipboard operation
nativescript-vscode-extension copied to clipboard

`Sync` command can skip breakpoints after code changes

Open valentinstoychev opened this issue 8 years ago • 1 comments

Currently, if you execute the "sync" command in our VS Code extension the debugger will detach and attach to the running application everytime livesync is executed. Since attach/detach is taking several seconds to complete, livesync is faster and this leads to debug breakpoints being missed because the UI is reloaded, but the debugger is not attached for several seconds.

In order this to be resolved livesync and the VSCode extension can exchange information and if the change that is done in the app do not require restart of the app the debugger can remain connected.

valentinstoychev avatar Dec 12 '16 13:12 valentinstoychev