diff options
author | Enrico Granata <egranata@apple.com> | 2015-02-12 23:09:17 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-02-12 23:09:17 +0000 |
commit | e0d951db44c7f86bcb643165ee0f419a6d2a119d (patch) | |
tree | ab07c0cf5d04124256d6e1e7733f4fe9e281f733 /lldb/scripts/Python/interface/SBFrame.i | |
parent | 64a3f3084e2834aa91ea4730d1b6ff9ff0786660 (diff) | |
download | bcm5719-llvm-e0d951db44c7f86bcb643165ee0f419a6d2a119d.tar.gz bcm5719-llvm-e0d951db44c7f86bcb643165ee0f419a6d2a119d.zip |
I had recently added a new SBFrame::GetVariables() overload with yet another bool argument
We talked about it internally - and came to the conclusion that it's time to have an options class
This commit adds an SBVariablesOptions class and goes through all the required dance
llvm-svn: 228975
Diffstat (limited to 'lldb/scripts/Python/interface/SBFrame.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBFrame.i | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lldb/scripts/Python/interface/SBFrame.i b/lldb/scripts/Python/interface/SBFrame.i index 5cacb5ea1b3..b1d1e4e9215 100644 --- a/lldb/scripts/Python/interface/SBFrame.i +++ b/lldb/scripts/Python/interface/SBFrame.i @@ -199,12 +199,7 @@ public: lldb::DynamicValueType use_dynamic); lldb::SBValueList - GetVariables (bool arguments, - bool locals, - bool statics, - bool in_scope_only, - bool include_runtime_support_values, - lldb::DynamicValueType use_dynamic); + GetVariables (const lldb::SBVariablesOptions& options); lldb::SBValueList GetRegisters (); |