[Lldb-commits] [lldb] [lldb-dap] Creating an API for sending custom dap events from lldb-dap. (PR #112384)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 15 15:41:09 PDT 2024
================
@@ -1896,6 +1896,8 @@ void request_initialize(const llvm::json::Object &request) {
cmd.AddCommand(
"repl-mode", new ReplModeRequestHandler(),
"Get or set the repl behavior of lldb-dap evaluation requests.");
+ cmd.AddCommand("custom-event", new CustomDAPEventRequestHandler(),
----------------
ashgti wrote:
The command is in the `lldb-dap` command group, so I think that would become a bit redundant as `lldb-dap custom-dap-event`, but with [vogelsgesang](https://github.com/vogelsgesang)'s comment below, how about `lldb-dap send-event`?
https://github.com/llvm/llvm-project/pull/112384
More information about the lldb-commits
mailing list