[Lldb-commits] [lldb] [lldb-dap] Add process picker command to VS Code extension (PR #128943)
Adrian Vogelsgesang via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 6 14:49:28 PST 2025
================
@@ -27,9 +28,14 @@ export class LinuxProcessTree extends BaseProcessTree {
return;
}
+ const command = line.slice(commandOffset, argumentsOffset).trim();
+ if (command === "-") {
----------------
vogelsgesang wrote:
when would command be `-`? Please add a comment to the source code explaining this
https://github.com/llvm/llvm-project/pull/128943
More information about the lldb-commits
mailing list