Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(693)

Unified Diff: src/objects-printer.cc

Issue 1675223002: Mark maps having a hidden prototype rather than maps of hidden prototypes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comment Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/objects-inl.h ('k') | src/ppc/builtins-ppc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-printer.cc
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index 339c69904802465936b8dfb8b89cb6255e336e81..7127dacad35faaea4a187ccd0fcdbad8852f1507 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -457,7 +457,7 @@ void Map::MapPrint(std::ostream& os) { // NOLINT
if (is_deprecated()) os << "\n - deprecated_map";
if (is_stable()) os << "\n - stable_map";
if (is_dictionary_map()) os << "\n - dictionary_map";
- if (is_hidden_prototype()) os << "\n - hidden_prototype";
+ if (has_hidden_prototype()) os << "\n - has_hidden_prototype";
if (has_named_interceptor()) os << " - named_interceptor";
if (has_indexed_interceptor()) os << "\n - indexed_interceptor";
if (is_undetectable()) os << "\n - undetectable";
« no previous file with comments | « src/objects-inl.h ('k') | src/ppc/builtins-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698