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

Unified Diff: src/objects-printer.cc

Issue 2108203002: Implement immutable prototype chains (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: reverse bitfield arguments Created 4 years, 6 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
Index: src/objects-printer.cc
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index 2c718fae8dbbca0ca0570f671e781f5e2fc732b0..bc9afb1fe3fcd6a9c9c3067246f4728b9d595bae 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -1133,7 +1133,8 @@ void ObjectTemplateInfo::ObjectTemplateInfoPrint(std::ostream& os) { // NOLINT
os << "\n - property_list: " << Brief(property_list());
os << "\n - property_accessors: " << Brief(property_accessors());
os << "\n - constructor: " << Brief(constructor());
- os << "\n - internal_field_count: " << Brief(internal_field_count());
+ os << "\n - internal_field_count: " << internal_field_count();
+ os << "\n - immutable_proto: " << (immutable_proto() ? "true" : "false");
os << "\n";
}

Powered by Google App Engine
This is Rietveld 408576698