| Function Summary | |
canonicalize(string stack) ⇒ stringBrings the stack trace into a common format across browsers. | |
followCallChain_() ⇒ !ArrayCreates a stack trace by following the call chain. Based on {@link goog.debug.getStacktrace}. | |
framesToString_(!Array frames) ⇒ stringConverts the stack frames into canonical format. Chops the beginning and the end of it which come from the testing environment, not from the test itself. | |
get() ⇒ stringGets the native stack trace if available otherwise follows the call chain. | |
htmlEscape_(string text) ⇒ stringEscapes the special character in HTML. | |
isClosureInspectorActive_() ⇒ boolean | |
maybeDeobfuscateFunctionName_(string name) ⇒ stringDeobfuscates a compiled function name with the function passed to {@link #setDeobfuscateFunctionName}. Returns the original function name if the deobfuscator hasn't been set. | |
parseLongFirefoxFrame_(string frameStr) ⇒ !goog.testing.stacktrace.FrameParses a long firefox stack frame. | |
parseStackFrame_(string frameStr) ⇒ ?goog.testing.stacktrace.FrameParses one stack frame. | |
parse_(string stack) ⇒ !ArrayParses the browser's native stack trace. | |
setDeobfuscateFunctionName(function (string): string fn)Sets function to deobfuscate function names. | |