Reviewers: Mads Ager, Description: Added missing property types to debug print.
Please review this at http://codereview.chromium.org/18405 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/objects-debug.cc Index: src/objects-debug.cc =================================================================== --- src/objects-debug.cc (revision 1106) +++ src/objects-debug.cc (working copy) @@ -281,6 +281,10 @@ PrintF(" (callback)\n"); } else if (r.type() == MAP_TRANSITION) { PrintF(" (map transition)\n"); + } else if (r.type() == CONSTANT_TRANSITION) { + PrintF(" (constant transition)\n"); + } else if (r.type() == NULL_DESCRIPTOR) { + PrintF(" (null descriptor)\n"); } else { UNREACHABLE(); } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
