[Lldb-commits] [lldb] r175590 - And the NSString formatter is not Python anymore

Enrico Granata egranata at apple.com
Tue Feb 19 18:24:20 PST 2013


Author: enrico
Date: Tue Feb 19 20:24:20 2013
New Revision: 175590

URL: http://llvm.org/viewvc/llvm-project?rev=175590&view=rev
Log:
And the NSString formatter is not Python anymore

Modified:
    lldb/trunk/www/varformats.html

Modified: lldb/trunk/www/varformats.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/varformats.html?rev=175590&r1=175589&r2=175590&view=diff
==============================================================================
--- lldb/trunk/www/varformats.html (original)
+++ lldb/trunk/www/varformats.html Tue Feb 19 20:24:20 2013
@@ -1177,10 +1177,9 @@ def function (valobj,internal_dict):<br/
           	on the target process, <code>no-run-target</code> is enough for this to work.
           	As a final sidenote on this, LLDB is currently able to provide a summary string for <code>NSString</code>
           	that shows the content of the string, without requiring you to run code on the target
-          	process. This features requires you to enable the AppKit category (see below for details). The
-          	Python code for this formatter is at <a href="http://llvm.org/svn/llvm-project/lldb/trunk/examples/summaries/cocoa/CFString.py">
-          	CFString.py</a> (the script is well commented, but intricate and might not be obvious, lacking
-            working experience with Cocoa and the LLDB API).
+          	process. This features requires you to enable the AppKit category (see below for details). 
+			The first implementation of this feature was a Python script (still available for reference at <a href="http://llvm.org/svn/llvm-project/lldb/trunk/examples/summaries/cocoa/CFString.py">).
+			However, this is out of sync with the current implementation of the NSString formatter (which is a C++ function compiled into the LLDB core).
 			</p>
           </div>
         </div>





More information about the lldb-commits mailing list