[Lldb-commits] [lldb] [lldb-vscode] Make descriptive summaries and raw child for synthetics configurable (PR #65687)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 8 13:24:38 PDT 2023
================
@@ -40,7 +40,8 @@ VSCode::VSCode()
{"swift_catch", "Swift Catch", lldb::eLanguageTypeSwift},
{"swift_throw", "Swift Throw", lldb::eLanguageTypeSwift}}),
focus_tid(LLDB_INVALID_THREAD_ID), sent_terminated_event(false),
- stop_at_entry(false), is_attach(false),
+ stop_at_entry(false), is_attach(false), show_descriptive_summaries(false),
+ show_raw_child_for_synthetics(false),
----------------
JDevlieghere wrote:
Thanks for the context Greg. The commit description and the `rawChildForSynthetics` property both say the default is `true`, so that needs to be updated. My comment here was strictly referring to the boolean to make sure it was consistent with the other two, but it seems like that's not what we want.
https://github.com/llvm/llvm-project/pull/65687
More information about the lldb-commits
mailing list