Commit 41e55f24 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Added missing property types to debug print.

Review URL: http://codereview.chromium.org/18405

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1109 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 585e36b4
......@@ -281,6 +281,10 @@ void JSObject::PrintProperties() {
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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment