[Lldb-commits] [PATCH] D82155: [lldb/interpreter] Add ability to save lldb session to a file
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 22 09:34:19 PDT 2020
JDevlieghere added inline comments.
================
Comment at: lldb/source/Interpreter/CommandInterpreter.cpp:506-519
m_command_dict["register"] =
CommandObjectSP(new CommandObjectRegister(*this));
m_command_dict["reproducer"] =
CommandObjectSP(new CommandObjectReproducer(*this));
m_command_dict["script"] =
CommandObjectSP(new CommandObjectScript(*this, script_language));
+ m_command_dict["session"] = CommandObjectSP(new CommandObjectSession(*this));
----------------
labath wrote:
> /me wonders how this file escaped Jonas's make_shared-ification.
Oh my god. Let's fix that ASAP: https://reviews.llvm.org/D84336
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82155/new/
https://reviews.llvm.org/D82155
More information about the lldb-commits
mailing list