| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 16323fbc7bfb91ddd38df2a45f04b531ef6a09d7..7fea515ee651d08f6ecf06c0c2281125cbba0658 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -1184,6 +1184,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());
|
|
|