[Lldb-commits] [lldb] r175589 - Data formatters are not a *recent* addition...
Enrico Granata
egranata at apple.com
Tue Feb 19 18:22:00 PST 2013
Author: enrico
Date: Tue Feb 19 20:22:00 2013
New Revision: 175589
URL: http://llvm.org/viewvc/llvm-project?rev=175589&view=rev
Log:
Data formatters are not a *recent* addition...
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=175589&r1=175588&r2=175589&view=diff
==============================================================================
--- lldb/trunk/www/varformats.html (original)
+++ lldb/trunk/www/varformats.html Tue Feb 19 20:22:00 2013
@@ -16,8 +16,7 @@
<h1 class="postheader">Variable display</h1>
<div class="postcontent">
- <p>LLDB was recently modified to allow users to define custom
- formatting options for the variables display.</p>
+ <p>LLDB has a data formatters subsystem that allows users to define custom display options for their variables.</p>
<p>Usually, when you type <code>frame variable</code> or
run some <code>expression</code> LLDB will
@@ -1171,7 +1170,7 @@ def function (valobj,internal_dict):<br/
<b>(lldb)</b> frame variable ns_string --dynamic-type no-run-target --show-types
</td>
</table>
- <code>(id, dynamic type: __NSCFString) ns_string = 0x00000001001183d0 @"An NSString saying hello world"<br/>
+ <code>(__NSCFString *) ns_string = 0x00000001001183d0 @"An NSString saying hello world"<br/>
</code>
<p>
Because LLDB uses a detection algorithm that does not need to invoke any functions
More information about the lldb-commits
mailing list