[Lldb-commits] [lldb] r136227 - /lldb/trunk/scripts/Python/interface/SBFrame.i

Johnny Chen johnny.chen at apple.com
Wed Jul 27 11:13:32 PDT 2011


Author: johnny
Date: Wed Jul 27 13:13:32 2011
New Revision: 136227

URL: http://llvm.org/viewvc/llvm-project?rev=136227&view=rev
Log:
Add cross reference to SBThread from the SBFrame docstring.  Also add a simple iteration example.

Modified:
    lldb/trunk/scripts/Python/interface/SBFrame.i

Modified: lldb/trunk/scripts/Python/interface/SBFrame.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBFrame.i?rev=136227&r1=136226&r2=136227&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBFrame.i (original)
+++ lldb/trunk/scripts/Python/interface/SBFrame.i Wed Jul 27 13:13:32 2011
@@ -37,7 +37,13 @@
                 args=get_args_as_string(frame, showFuncName=False) if not frame.IsInlined() else '()')
 
     ...
-"
+
+And,
+
+    for frame in thread:
+        print frame
+
+See also SBThread."
 ) SBFrame;
 class SBFrame
 {





More information about the lldb-commits mailing list