| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index ea5dec8e7179947fbb787d832922bd05288330fa..914979e7cb7c2575ce381821576b5f3962a5f088 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -1289,6 +1289,10 @@ void TransitionArray::PrintTransitions(std::ostream& os, Object* transitions,
|
| } else if (key == heap->elements_transition_symbol()) {
|
| os << "(transition to " << ElementsKindToString(target->elements_kind())
|
| << ")";
|
| + } else if (key == heap->strict_function_transition_symbol()) {
|
| + os << " (transition to strict function)";
|
| + } else if (key == heap->strong_function_transition_symbol()) {
|
| + os << " (transition to strong function)";
|
| } else if (key == heap->observed_symbol()) {
|
| os << " (transition to Object.observe)";
|
| } else {
|
|
|