| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 767de0fc5365035cf1af8dbb346085b137fffd0b..c6065009ed1c4aae819d2d81811a79b0e0090503 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -1513,6 +1513,14 @@ void StackTraceInfo::StackTraceInfoPrint(std::ostream& os) { // NOLINT
|
| os << "\n";
|
| }
|
|
|
| +void SourcePositionTableWithFrameCache::SourcePositionTableWithFrameCachePrint(
|
| + std::ostream& os) { // NOLINT
|
| + HeapObject::PrintHeader(os, "SourcePositionTableWithFrameCache");
|
| + os << "\n - source_position_table: " << Brief(source_position_table());
|
| + os << "\n - stack_frame_cache: " << Brief(stack_frame_cache());
|
| + os << "\n";
|
| +}
|
| +
|
| static void PrintBitMask(std::ostream& os, uint32_t value) { // NOLINT
|
| for (int i = 0; i < 32; i++) {
|
| if ((i & 7) == 0) os << " ";
|
|
|