From 710d88fd649942cdd80ddac33f9d6848e4c45515 Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Wed, 20 Feb 2013 02:24:20 +0000 Subject: [PATCH] And the NSString formatter is not Python anymore llvm-svn: 175590 --- lldb/www/varformats.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lldb/www/varformats.html b/lldb/www/varformats.html index 7a9a1ee..3ea6216 100755 --- a/lldb/www/varformats.html +++ b/lldb/www/varformats.html @@ -1177,10 +1177,9 @@ def function (valobj,internal_dict):
on the target process, no-run-target is enough for this to work. As a final sidenote on this, LLDB is currently able to provide a summary string for NSString 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 - CFString.py (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 ). + However, this is out of sync with the current implementation of the NSString formatter (which is a C++ function compiled into the LLDB core).

-- 2.7.4