[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:03:10 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:
@da-viper for your Pull Request, I would recommend sticking to the existing practice, i.e. use the DAP style (camelCase) for all classes which model the DAP protocol.
In case we do indeed decide to go with the LLDB snake_case code style, we can later on apply the snake_casing globally, across all protocol classes, also independently of your PR
https://github.com/llvm/llvm-project/pull/130503
More information about the lldb-commits
mailing list