Da-Viper wrote:

you could also validate the pid input in package.json from 

https://github.com/llvm/llvm-project/blob/038731c709c665634714275996559c21f36372f2/lldb/tools/lldb-dap/package.json#L359-L364

to 

```json
"pid": {
  "anyOf": [
    {
      "type": "number",
      "description": "System process ID to attach to."
    },
    {
      "const": "${command:pickProcess}",
      "description": "Picks a process ID using the process ID picker"
    }
  ]
},
```


https://github.com/llvm/llvm-project/pull/128943
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to