| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index b4c8689fe1f2772c7e8a67ffd98c289d87ebb5d3..b154674a0e70060c8ecfad8aafbc56b8c44e9f43 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -1299,6 +1299,13 @@ void ContextExtension::ContextExtensionPrint(std::ostream& os) { // NOLINT
|
| os << "\n";
|
| }
|
|
|
| +void ConstantElementsPair::ConstantElementsPairPrint(
|
| + std::ostream& os) { // NOLINT
|
| + HeapObject::PrintHeader(os, "ConstantElementsPair");
|
| + os << "\n - elements_kind: " << static_cast<ElementsKind>(elements_kind());
|
| + os << "\n - constant_values: " << Brief(constant_values());
|
| + os << "\n";
|
| +}
|
|
|
| void AccessorPair::AccessorPairPrint(std::ostream& os) { // NOLINT
|
| HeapObject::PrintHeader(os, "AccessorPair");
|
|
|