In Chrome, you can increase the stack trace depth by setting a flag at runtime (using --js-flags="--stack-trace-limit <value>"
), or through the console (using Error.stackTraceLimit
), explained here: https://code.google.com/p/v8/wiki/JavaScriptStackTraceApi
This is also possible in Firebug, from what I understand, although I'm not as familiar with the intricacies of that tool.
Is there any provision for this in IE11? I'm dealing with an IE-specific issue, and the stack trace doesn't shed any light beyond my library's code (AngularJS). Increasing the stack trace depth would likely help me here.
Thanks!