@@ -32,17 +32,18 @@ using namespace lldb_dap;
3232
3333namespace lldb_dap {
3434
35- DAP::DAP ()
36- : broadcaster(" lldb-dap" ), exception_breakpoints(),
37- focus_tid (LLDB_INVALID_THREAD_ID), stop_at_entry(false ), is_attach(false ),
35+ DAP::DAP (llvm::StringRef path, ReplMode repl_mode)
36+ : debug_adaptor_path(path), broadcaster(" lldb-dap" ),
37+ exception_breakpoints (), focus_tid(LLDB_INVALID_THREAD_ID),
38+ stop_at_entry(false ), is_attach(false ),
3839 enable_auto_variable_summaries(false ),
3940 enable_synthetic_child_debugging(false ),
4041 display_extended_backtrace(false ),
4142 restarting_process_id(LLDB_INVALID_PROCESS_ID),
4243 configuration_done_sent(false ), waiting_for_run_in_terminal(false ),
4344 progress_event_reporter(
4445 [&](const ProgressEvent &event) { SendJSON (event.ToJSON ()); }),
45- reverse_request_seq (0 ), repl_mode(ReplMode::Auto ) {
46+ reverse_request_seq (0 ), repl_mode(repl_mode ) {
4647 const char *log_file_path = getenv (" LLDBDAP_LOG" );
4748#if defined(_WIN32)
4849 // Windows opens stdout and stdin in text mode which converts \n to 13,10
0 commit comments