[];++const serverMode = config.get<boolean>('serverMode', false);+if (serverMode) {+const { host, port } = await this.startServer(dapPath, dbgArgs, dbgOptions);+return new vscode.DebugAdapterServer(port, host);}-return undefined;++return new vscode.DebugAdapterExecutable(dapPath, dbgArg...
The extension requires thelldb-dap(formerlylldb-vscode) binary. This binary is not packaged with the VS Code extension. There are multiple ways to obtain this binary: Use the binary provided by your toolchain (for examplexcrun -f lldb-dapon macOS) or contact your toolchain vendor to include ...
[lldb] Remove more references to lldb-vscode (llvm#69696) Browse files There are some uses of "vscode" in `lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py` where I'm not sure if it's referring to the adapter or VS Code itself, so those remain....
Fix command escape bug in lldb-dap (#72902)llvm/llvm-project#69238 caused breakage in VSCode debug console usage -- the user's input is always treated as commands instead of expressions (the same behavior as if empty command escape prefix is specified). The bug is in one overload of `...
dap-php.el dap-pwsh.el dap-python.el dap-ruby.el dap-ui.el dap-utils.el dap-variables.el dapui.el mkdocs.yml Breadcrumbs dap-mode / Latest commit leungbk [dap-lldb] Change :type to lldb-vscode, per the docs (emacs-lsp#373) ...
[2022-06-12T20:09:07.881Z DEBUG codelldb::dap_codec] <-- {"seq":158,"type":"event","event":"output","body":{"output":"Process exited with code 0.\n"}} [2022-06-12T20:09:07.881Z DEBUG codelldb::dap_codec] <-- {"seq":159,"type":"event","event":"exited","body":{"...
VSCode version: 1.56.2 Extension version: v1.6.5 Compiler: apple clang (lldb-1205.0.28.2) Build target: arm64 When I click debug at the bottom in the status bar I see the following error in the output: configuration: { name: 'Debug vcpkg', type: 'lldb', request: 'launch', program:...
VSCode 1.80.1 Swift extension 1.5.2 CodeLLDB extension 1.10.0 Member compnerd commented Oct 4, 2023 @gandalfas I'm now thinking that this is actually related to CodeLLDB. Fortunately, this is easy to resolve: stop using CodeLLDB. We are looking to migrate to a new DAP on Windows, wh...
This patch is a reworking of Pete Lawrence's (@PortalPete) proposal for better expression evaluator error messages: #80938 Before: $ lldb -o "expr a+b" (lldb) expr a+b error: <user expression 0>:1:...
(B) vimspector plugin (the DAP layer) (C) language-specific adapter (e.g. CodeLLDB, vscode-cpptools) (D) language-specific debugger (e.g. lldb, gdb) (E) use binary -or- attach to remote server Outcome By the end of this tutorial, one will have: preliminary understanding of how vims...