[Lldb-commits] [lldb] [llvm] [lldb][lldb-dap] Implement jump to cursor (PR #130503)

Ebuka Ezike via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 20 08:58:09 PDT 2025


================
@@ -113,6 +113,20 @@ class ExceptionInfoRequestHandler : public RequestHandler {
   void operator()(const llvm::json::Object &request) const override;
 };
 
+class GoToRequestHandler : public RequestHandler {
----------------
da-viper wrote:

There is an issue with the way to new protocol works, If you need to send and event after a response. (currently needed for goto, next , stepIn , stepOut) .  It does not handle that case. 
Instead you have to copy the implementation of `void operator()(const protocol::Request &request)` from the  `RequestHandler` 

https://github.com/llvm/llvm-project/pull/130503


More information about the lldb-commits mailing list