[Lldb-commits] [lldb] r218656 - Fix some errors that crept in when I cut & pasted into emacs.

Jim Ingham jingham at apple.com
Mon Sep 29 18:37:53 PDT 2014


Author: jingham
Date: Mon Sep 29 20:37:52 2014
New Revision: 218656

URL: http://llvm.org/viewvc/llvm-project?rev=218656&view=rev
Log:
Fix some errors that crept in when I cut & pasted into emacs.

Modified:
    lldb/trunk/examples/python/scripted_step.py

Modified: lldb/trunk/examples/python/scripted_step.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/scripted_step.py?rev=218656&r1=218655&r2=218656&view=diff
==============================================================================
--- lldb/trunk/examples/python/scripted_step.py (original)
+++ lldb/trunk/examples/python/scripted_step.py Mon Sep 29 20:37:52 2014
@@ -86,7 +86,7 @@ class SimpleStep:
     def __init__ (self, thread_plan, dict):
         self.thread_plan = thread_plan
         self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPC()
-
+        
     def explains_stop (self, event):
         # We are stepping, so if we stop for any other reason, it isn't
         # because of us.
@@ -94,13 +94,13 @@ class SimpleStep:
             return True
         else:
             return False
-
+        
     def should_stop (self, event):
         cur_pc = self.thread_plan.GetThread().GetFrameAtIndex(0).GetPC()
-
+        
         if cur_pc < self.start_address or cur_pc >= self.start_address + 20:
             self.thread_plan.SetPlanComplete(True)
-                return True
+            return True
         else:
             return False
 
@@ -109,22 +109,22 @@ class SimpleStep:
 
 class StepWithPlan:
     def__init__ (self,thread_plan, dict):
-    self.thread_plan = thread_plan
-    self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPCAddress()
-    self.step_thread_plan =thread_plan.QueueThreadPlanForStepOverRange(self.start_address, 20);
-
-    defexplains_stop (self, event):
-    # Since all I'm doing is running a plan, I will only ever get askedthis
-    # if myplan doesn't explain the stop, and in that caseI don'teither.
+        self.thread_plan = thread_plan
+        self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPCAddress()
+        self.step_thread_plan =thread_plan.QueueThreadPlanForStepOverRange(self.start_address, 20);
+
+    def explains_stop (self, event):
+        # Since all I'm doing is running a plan, I will only ever get askedthis
+        # if myplan doesn't explain the stop, and in that caseI don'teither.
         return False
 
-defshould_stop (self, event):
-if self.step_thread_plan.IsPlanComplete():
+    def should_stop (self, event):
+        if self.step_thread_plan.IsPlanComplete():
             self.thread_plan.SetPlanComplete(True)
             return True
-else:
-        return False
+        else:
+            return False
 
-defshould_step (self):
-return False
+    def should_step (self):
+        return False
 





More information about the lldb-commits mailing list