[Lldb-commits] [PATCH] D100443: [lldb-vscode] Reduce chattiness of progress events
walter erquinigo via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 13 22:01:56 PDT 2021
wallace added inline comments.
================
Comment at: lldb/tools/lldb-vscode/ProgressEvent.cpp:38-78
+const char *ProgressEvent::GetEventName() const {
+ if (m_event_type == progressStart)
+ return "progressStart";
+ else if (m_event_type == progressEnd)
+ return "progressEnd";
+ else if (m_event_type == progressUpdate)
+ return "progressUpdate";
----------------
all of this is just moved from the existing code
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100443/new/
https://reviews.llvm.org/D100443
More information about the lldb-commits
mailing list