[llvm-branch-commits] [lldb] [lldb] Add extended variable support to Get*VariableList. (PR #181501)

Aman LaChapelle via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Apr 15 21:54:35 PDT 2026


================
@@ -439,7 +439,11 @@ StackFrame::GetSymbolContext(SymbolContextItem resolve_scope) {
 }
 
 VariableList *StackFrame::GetVariableList(bool get_file_globals,
+                                          bool include_extended_vars,
                                           Status *error_ptr) {
+  // We don't have 'extended variables' in the base stack frame.
+  (void)include_extended_vars;
----------------
bzcheeseman wrote:

That feels more appropriate if we have like 4 or 5 booleans, IMO 2 bools is not a big deal to put on an API surface? I guess, can you help me understand what you're going for here?

https://github.com/llvm/llvm-project/pull/181501


More information about the llvm-branch-commits mailing list