| 512 | void getCurrentExceptionStackAsStrings(Array<String> result); |
| 513 | StackFrame *getCurrentStackFrame() { return mStackFrames.back(); } |
| 514 | StackFrame *getStackFrame(int inIndex) { return mStackFrames[inIndex]; } |
| 515 | int getDepth() const { return mStackFrames.size(); } |
| 516 | inline const char *getFullNameAtDepth(int depth) const; |
| 517 | void dumpExceptionStack(); |