[Lldb-commits] [PATCH] D95710: [lldb/Commands] Add command options for ScriptedProcess to ProcessLaunch
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 5 09:16:48 PST 2021
JDevlieghere accepted this revision.
JDevlieghere added a comment.
This revision is now accepted and ready to land.
LGTM with a few nits.
================
Comment at: lldb/include/lldb/Host/ProcessLaunchInfo.h:187
lldb::ListenerSP m_hijack_listener_sp;
+ std::string m_scripted_process_class_name;
+ StructuredData::DictionarySP m_scripted_process_dictionary_sp;
----------------
Can you add a Doxygen comment explaining what they're used for?
================
Comment at: lldb/source/Host/common/ProcessLaunchInfo.cpp:176
m_hijack_listener_sp.reset();
+ m_scripted_process_class_name = "";
+ m_scripted_process_dictionary_sp.reset();
----------------
Let's call `clear` for consistency with `m_plugin_name` which is also a string.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95710/new/
https://reviews.llvm.org/D95710
More information about the lldb-commits
mailing list