[Lldb-commits] [lldb] [llvm] [lldb][lldb-dap] Implement jump to cursor (PR #130503)
Adrian Vogelsgesang via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 20 05:43:19 PDT 2025
================
@@ -113,6 +113,20 @@ class ExceptionInfoRequestHandler : public RequestHandler {
void operator()(const llvm::json::Object &request) const override;
};
+class GoToRequestHandler : public RequestHandler {
+public:
+ using RequestHandler::RequestHandler;
+ static llvm::StringLiteral getCommand() { return "goto"; }
----------------
vogelsgesang wrote:
After rebasing on main... This function got renamed in 1028ea9e2641341436555347fb65d6f2eafcfbdd
```suggestion
static llvm::StringLiteral GetCommand() { return "goto"; }
```
https://github.com/llvm/llvm-project/pull/130503
More information about the lldb-commits
mailing list