| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index a845e06f232b9f0ec18e9592b98df20a98ed9102..25a348a8d86097ad9e68fb5302add6a6a929cc34 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -733,11 +733,13 @@ void JSDate::JSDatePrint(std::ostream& os) { // NOLINT
|
|
|
| void JSProxy::JSProxyPrint(std::ostream& os) { // NOLINT
|
| HeapObject::PrintHeader(os, "JSProxy");
|
| - os << " - map = " << reinterpret_cast<void*>(map()) << "\n";
|
| - os << " - handler = ";
|
| - handler()->Print(os);
|
| + os << " - map = " << reinterpret_cast<void*>(map());
|
| + os << "\n - target = ";
|
| + target()->ShortPrint(os);
|
| + os << "\n - handler = ";
|
| + handler()->ShortPrint(os);
|
| os << "\n - hash = ";
|
| - hash()->Print(os);
|
| + hash()->ShortPrint(os);
|
| os << "\n";
|
| }
|
|
|
|
|