[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 06:01:03 PDT 2025


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

Good point.

Currently, we are using the naming from the [Debug Adapter Protocol spec](https://github.com/microsoft/debug-adapter-protocol/blob/main/debugAdapterProtocol.json) directly (That's also where we copied all the comments from).

As such, we also copied over the camelCase style from the DAP spec. Not sure if we want to stick to the DAP style or LLDB style here. Afaik, this is not a discussion we had so far.

@ashgti @JDevlieghere WDYT?

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


More information about the lldb-commits mailing list