================ @@ -210,12 +209,33 @@ struct DAP { // will contain that expression. std::string last_nonempty_var_expression; - DAP(llvm::StringRef client_name, llvm::StringRef path, std::ofstream *log, - lldb::IOObjectSP input, lldb::IOObjectSP output, ReplMode repl_mode, - std::vector<std::string> pre_init_commands); + /// Creates a new DAP sessions. + /// + /// \param[in] path + /// Path to the lldb-dap binary. + /// \param[in] log + /// Log file stream, if configured. + /// \param[in] default_repl_mode + /// Default repl mode behavior, as configured by the binary. + /// \param[in] pre_init_commands + /// LLDB commands to execute as soon as the debugger instance is allocaed. + /// \param[in] client_name + /// Debug session client name, for example 'stdin/stdout' or 'client_1'. ---------------- JDevlieghere wrote:
If the `client_name` is stored in the `Transport` class, do we need to duplicate it in the `DAP` object? Does it (not) make sense to get it from the transport instance? https://github.com/llvm/llvm-project/pull/130026 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits