| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 9edcb53caa652093afb591ce098928f69fbebee2..1f09f7618e16297677b923af3f68e80c157acd64 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -1197,6 +1197,14 @@ void PrototypeInfo::PrototypeInfoPrint(std::ostream& os) { // NOLINT
|
| os << "\n";
|
| }
|
|
|
| +void Tuple3::Tuple3Print(std::ostream& os) { // NOLINT
|
| + HeapObject::PrintHeader(os, "Tuple3");
|
| + os << "\n - value1: " << Brief(value1());
|
| + os << "\n - value2: " << Brief(value2());
|
| + os << "\n - value3: " << Brief(value3());
|
| + os << "\n";
|
| +}
|
| +
|
| void ContextExtension::ContextExtensionPrint(std::ostream& os) { // NOLINT
|
| HeapObject::PrintHeader(os, "ContextExtension");
|
| os << "\n - scope_info: " << Brief(scope_info());
|
|
|