[Lldb-commits] [lldb] [lldb][lldb-dap] fix repeating commands in repl mode (PR #135008)
Walter Erquinigo via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 16 08:25:34 PDT 2025
================
@@ -164,7 +164,8 @@ void EvaluateRequestHandler::operator()(
dap.focus_tid = frame.GetThread().GetThreadID();
}
auto result = RunLLDBCommandsVerbatim(dap.debugger, llvm::StringRef(),
- {std::string(expression)});
+ {std::string(expression)},
+ /*echo_commands*/ false);
----------------
walter-erquinigo wrote:
```suggestion
/*echo_commands=*/ false);
```
https://github.com/llvm/llvm-project/pull/135008
More information about the lldb-commits
mailing list