Index: src/objects-printer.cc |
diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
index ea5dec8e7179947fbb787d832922bd05288330fa..10350fd66fa2251cd15cfcf6c2e5d4df7b847969 100644 |
--- a/src/objects-printer.cc |
+++ b/src/objects-printer.cc |
@@ -1289,6 +1289,12 @@ 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->sloppy_function_symbol()) { |
+ os << " (transition to sloppy function)"; |
+ } else if (key == heap->strict_function_symbol()) { |
+ os << " (transition to strict function)"; |
+ } else if (key == heap->strong_function_symbol()) { |
+ os << " (transition to strong function)"; |
} else if (key == heap->observed_symbol()) { |
os << " (transition to Object.observe)"; |
} else { |