Revision: 14689
Author:   mstarzin...@chromium.org
Date:     Wed May 15 07:03:42 2013
Log:      Slight improvement of object printer for maps.

R=u...@chromium.org

Review URL: https://codereview.chromium.org/14969030
http://code.google.com/p/v8/source/detail?r=14689

Modified:
 /branches/bleeding_edge/src/objects-printer.cc

=======================================
--- /branches/bleeding_edge/src/objects-printer.cc      Wed May  8 08:02:08 2013
+++ /branches/bleeding_edge/src/objects-printer.cc      Wed May 15 07:03:42 2013
@@ -596,8 +596,8 @@
   }
   PrintF(out, " - back pointer: ");
   GetBackPointer()->ShortPrint(out);
-  PrintF(out, "\n - instance descriptors %i #%i: ",
-         owns_descriptors(),
+  PrintF(out, "\n - instance descriptors %s#%i: ",
+         owns_descriptors() ? "(own) " : "",
          NumberOfOwnDescriptors());
   instance_descriptors()->ShortPrint(out);
   if (HasTransitionArray()) {

--
--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to