[Lldb-commits] [lldb] [lldb][lldb-dap] Added support for "WriteMemory" request. (PR #131820)
Adrian Vogelsgesang via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 19 05:58:35 PDT 2025
================
@@ -394,6 +394,13 @@ class TestGetTargetBreakpointsRequestHandler : public LegacyRequestHandler {
void operator()(const llvm::json::Object &request) const override;
};
+class WriteMemoryRequestHandler : public LegacyRequestHandler {
+public:
+ using LegacyRequestHandler::LegacyRequestHandler;
+ static llvm::StringLiteral getCommand() { return "writeMemory"; }
----------------
vogelsgesang wrote:
recently renamed in https://github.com/llvm/llvm-project/commit/1028ea9e2641341436555347fb65d6f2eafcfbdd
```suggestion
static llvm::StringLiteral GetCommand() { return "writeMemory"; }
```
https://github.com/llvm/llvm-project/pull/131820
More information about the lldb-commits
mailing list