| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index df6854db7a0c3593c1033ec53582bec311fe1cf8..7e96af5f7bee833f87bf98ae3411ddc63f8402bf 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -1409,6 +1409,12 @@ void BreakPointInfo::BreakPointInfoPrint(std::ostream& os) { // NOLINT
|
| os << "\n";
|
| }
|
|
|
| +void BreakPoint::BreakPointPrint(std::ostream& os) { // NOLINT
|
| + HeapObject::PrintHeader(os, "BreakPoint");
|
| + os << "\n - condition: " << Brief(condition());
|
| + os << "\n - data: " << Brief(data());
|
| + os << "\n";
|
| +}
|
|
|
| static void PrintBitMask(std::ostream& os, uint32_t value) { // NOLINT
|
| for (int i = 0; i < 32; i++) {
|
|
|