| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 8c7e9914a29f9af9326348ed370cd69d5358c87b..35d1d667dfda5e1cd083502a845144c0cbdeb035 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -418,12 +418,6 @@ void Map::MapPrint(std::ostream& os) { // NOLINT
|
| if (is_deprecated()) os << " - deprecated_map\n";
|
| if (is_stable()) os << " - stable_map\n";
|
| if (is_dictionary_map()) os << " - dictionary_map\n";
|
| - if (is_prototype_map()) {
|
| - os << " - prototype_map\n";
|
| - os << " - prototype info: " << Brief(prototype_info());
|
| - } else {
|
| - os << " - back pointer: " << Brief(GetBackPointer());
|
| - }
|
| if (is_hidden_prototype()) os << " - hidden_prototype\n";
|
| if (has_named_interceptor()) os << " - named_interceptor\n";
|
| if (has_indexed_interceptor()) os << " - indexed_interceptor\n";
|
| @@ -432,6 +426,12 @@ void Map::MapPrint(std::ostream& os) { // NOLINT
|
| if (is_access_check_needed()) os << " - access_check_needed\n";
|
| if (!is_extensible()) os << " - non-extensible\n";
|
| if (is_observed()) os << " - observed\n";
|
| + if (is_prototype_map()) {
|
| + os << " - prototype_map\n";
|
| + os << " - prototype info: " << Brief(prototype_info());
|
| + } else {
|
| + os << " - back pointer: " << Brief(GetBackPointer());
|
| + }
|
| os << "\n - instance descriptors " << (owns_descriptors() ? "(own) " : "")
|
| << "#" << NumberOfOwnDescriptors() << ": "
|
| << Brief(instance_descriptors());
|
|
|