debugger: Remove LLDB adapter, switch Rust tasks to CodeLLDB (#28773)

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2025-04-15 17:29:43 +02:00 committed by GitHub
parent aef78dcffd
commit ccf9aef767
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 110 deletions

View file

@ -2,7 +2,6 @@ mod codelldb;
mod gdb;
mod go;
mod javascript;
mod lldb;
mod php;
mod python;
@ -21,7 +20,6 @@ use dap::{
use gdb::GdbDebugAdapter;
use go::GoDebugAdapter;
use javascript::JsDebugAdapter;
use lldb::LldbDebugAdapter;
use php::PhpDebugAdapter;
use python::PythonDebugAdapter;
use serde_json::{Value, json};
@ -32,7 +30,6 @@ pub fn init(registry: Arc<DapRegistry>) {
registry.add_adapter(Arc::from(PythonDebugAdapter));
registry.add_adapter(Arc::from(PhpDebugAdapter));
registry.add_adapter(Arc::from(JsDebugAdapter));
registry.add_adapter(Arc::from(LldbDebugAdapter));
registry.add_adapter(Arc::from(GoDebugAdapter));
registry.add_adapter(Arc::from(GdbDebugAdapter));
}