I don\'t find anything about my question here on MDC or the ECMAscript specifications. Probably somebody knows a more \'hacky\' way to solve this.
I\'m calling
An alternative is simply doing this
var stack; if (console && console.trace) { stack = console.trace(); } else { try { var fail = 1 / 0; } catch (e) { if (e.stack) { stack = e.stack; } else if (e.stacktrace) { stack = e.stacktrace; } } } // have fun implementing normalize. return normalize(stack);