================ @@ -0,0 +1,37 @@ +import * as vscode from "vscode"; + +export class LaunchUriHandler implements vscode.UriHandler { + async handleUri(uri: vscode.Uri) { + try { + const params = new URLSearchParams(uri.query); + if (uri.path == '/launch/config') { + const configJson = params.get("config"); + if (configJson === null) { + throw new Error("Missing `config` URI parameter"); + } + // Build the debug config ---------------- JDevlieghere wrote:
```suggestion // Build the debug config. ``` https://github.com/llvm/llvm-project/pull/125843 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits