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

Unified Diff: src/property.cc

Issue 888623002: Property reconfiguring implemented. Tests added. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Prototype transitions printing removed Created 5 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-printer.cc ('k') | src/property-details.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/property.cc
diff --git a/src/property.cc b/src/property.cc
index dbe0afc9cab4416ff9f70e8da6d98d04d52d88f9..63837d3a92f312e07b787282981219b1dd590c7a 100644
--- a/src/property.cc
+++ b/src/property.cc
@@ -69,9 +69,9 @@ std::ostream& operator<<(std::ostream& os,
os << "immutable ";
}
os << (details.kind() == kData ? "data" : "accessor");
+ os << ": " << details.representation().Mnemonic();
if (details.location() == kField) {
- os << ": " << details.representation().Mnemonic()
- << ", field_index: " << details.field_index();
+ os << ", field_index: " << details.field_index();
}
return os << ", p: " << details.pointer()
<< ", attrs: " << details.attributes() << ")";
« no previous file with comments | « src/objects-printer.cc ('k') | src/property-details.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698