| Index: src/isolate.h | 
| diff --git a/src/isolate.h b/src/isolate.h | 
| index b9f842e7670a306066f30e3f221196ff77e102bf..37d832d25d36783d2db482f1aff22407a041b622 100644 | 
| --- a/src/isolate.h | 
| +++ b/src/isolate.h | 
| @@ -712,9 +712,11 @@ class Isolate { | 
| int frame_limit, | 
| StackTrace::StackTraceOptions options); | 
|  | 
| +  enum PrintStackMode { kPrintStackConcise, kPrintStackVerbose }; | 
| void PrintCurrentStackTrace(FILE* out); | 
| -  void PrintStack(StringStream* accumulator); | 
| -  void PrintStack(FILE* out); | 
| +  void PrintStack(StringStream* accumulator, | 
| +                  PrintStackMode mode = kPrintStackVerbose); | 
| +  void PrintStack(FILE* out, PrintStackMode mode = kPrintStackVerbose); | 
| Handle<String> StackTraceString(); | 
| NO_INLINE(void PushStackTraceAndDie(unsigned int magic, | 
| Object* object, | 
|  |