================
@@ -463,6 +463,8 @@ void InitializeRequestHandler::operator()(
   body.try_emplace("supportsDataBreakpoints", true);
   // The debug adapter supports the `readMemory` request.
   body.try_emplace("supportsReadMemoryRequest", true);
+  // The debug adapter supports the 'writeMemory' request.
+  body.try_emplace("supportsWriteMemoryRequest", true);
----------------
vogelsgesang wrote:

with the recent refactoring from 
https://github.com/llvm/llvm-project/pull/131943, this capability should be 
declared in the `WriteMemoryRequestHandler`

https://github.com/llvm/llvm-project/pull/131820
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to