[Lldb-commits] [lldb] [lldb-dap] Implement command directives (PR #74808)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu Dec 14 11:30:06 PST 2023
================
@@ -434,20 +434,54 @@ ExpressionContext DAP::DetectExpressionContext(lldb::SBFrame &frame,
return ExpressionContext::Variable;
}
-void DAP::RunLLDBCommands(llvm::StringRef prefix,
- const std::vector<std::string> &commands) {
- SendOutput(OutputType::Console,
- llvm::StringRef(::RunLLDBCommands(prefix, commands)));
+bool DAP::RunLLDBCommands(llvm::StringRef prefix,
+ llvm::ArrayRef<std::string> commands) {
+ bool required_command_failed;
----------------
clayborg wrote:
Initialize this to `false`
https://github.com/llvm/llvm-project/pull/74808
More information about the lldb-commits
mailing list