diff options
author | Jim Ingham <jingham@apple.com> | 2012-05-11 23:47:32 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-05-11 23:47:32 +0000 |
commit | 7ba6e991583603e0dbeb632a9086a9f9fbf5445c (patch) | |
tree | 600187733c0ecfc1bb7034a2d940c81a57be710e /lldb/scripts/Python/interface/SBFrame.i | |
parent | 87a170c1e60f0b0c109f4c94a96e4ba43ac160cb (diff) | |
download | bcm5719-llvm-7ba6e991583603e0dbeb632a9086a9f9fbf5445c.tar.gz bcm5719-llvm-7ba6e991583603e0dbeb632a9086a9f9fbf5445c.zip |
Found one more place where the OkayToDiscard needs to be consulted.
Also changed the defaults for SBThread::Step* to not delete extant plans.
Also added some test cases to test more complex stepping scenarios.
llvm-svn: 156667
Diffstat (limited to 'lldb/scripts/Python/interface/SBFrame.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBFrame.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBFrame.i b/lldb/scripts/Python/interface/SBFrame.i index 4bedbff8cce..20093a026aa 100644 --- a/lldb/scripts/Python/interface/SBFrame.i +++ b/lldb/scripts/Python/interface/SBFrame.i @@ -137,6 +137,9 @@ public: lldb::SBValue EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic); + lldb::SBValue + EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic, bool unwind_on_error); + %feature("docstring", " /// Gets the lexical block that defines the stack frame. Another way to think /// of this is it will return the block that contains all of the variables |