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

Unified Diff: src/objects-printer.cc

Issue 418143007: FYI Implementing 'super' keyword (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: one more test Created 6 years, 4 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 0a07db7605e3b1c5cca9f598c0bde35d980b722e..2aeff4c747c1c5d932213e602c28e569f88060ec 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -788,6 +788,7 @@ void JSFunction::JSFunctionPrint(OStream& os) { // NOLINT
} else {
os << "\n - literals = " << Brief(literals());
}
+ os << "\n - home object = " << Brief(home_object());
os << "\n - code = " << Brief(code());
os << "\n";
PrintProperties(os);

Powered by Google App Engine
This is Rietveld 408576698