We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c482df7 commit c451d8dCopy full SHA for c451d8d
src/debugAdapter2/goDlvDebug.ts
@@ -770,6 +770,8 @@ class DelveClient extends DAPClient {
770
// TODO: refactor this function into util.ts so it could be reused with
771
// the existing DA. Problem: it currently uses log() and logError() which makes
772
// this more difficult.
773
+// We'll want a separate util.ts for the DA, because the current utils.ts pulls
774
+// in vscode as a dependency, which shouldn't be done in a DA.
775
function killProcessTree(p: ChildProcess): Promise<void> {
776
if (!p || !p.pid) {
777
log(`no process to kill`);
0 commit comments