Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm embedding javascript in my app using spidermonkey and I have a function called reportError that receives a JSErrorReport.

It seems simple to grab the current line of the error, but is it possible to get the entire call path to display a full backtrace?

share|improve this question

1 Answer

Might not be the best answer, but the implementation of xpc_printJSStack may be helpful to you: http://mxr.mozilla.org/mozilla-central/source/js/xpconnect/src/XPCDebug.cpp#255

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.