[Lldb-commits] [lldb] [lldb-dap] Implement command directives (PR #74808)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 8 20:42:54 PST 2023
================
@@ -13,16 +13,22 @@ namespace lldb_dap {
void RunLLDBCommands(llvm::StringRef prefix,
const llvm::ArrayRef<std::string> &commands,
- llvm::raw_ostream &strm) {
+ llvm::raw_ostream &strm, bool parse_command_directives) {
if (commands.empty())
----------------
clayborg wrote:
Init the `fatal_error` to `false`
```
fatal_error = false;
```
https://github.com/llvm/llvm-project/pull/74808
More information about the lldb-commits
mailing list