Commit 2ea951c6 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Add handling of empty stack in the backtrace debug request.

Add accessor function for the exception in an ExceptionEvent.
Review URL: http://codereview.chromium.org/13382

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@961 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 4ede982a
......@@ -832,10 +832,16 @@ ExceptionEvent.prototype.eventType = function() {
};
ExceptionEvent.prototype.exception = function() {
return this.exception_;
}
ExceptionEvent.prototype.uncaught = function() {
return this.uncaught_;
}
ExceptionEvent.prototype.func = function() {
return this.exec_state_.frame(0).func();
};
......@@ -1322,6 +1328,14 @@ DebugCommandProcessor.prototype.backtraceRequest_ = function(request, response)
// Get the number of frames.
var total_frames = this.exec_state_.frameCount();
// Create simple response if there are no frames.
if (total_frames == 0) {
response.body = {
totalFrames: total_frames
}
return;
}
// Default frame range to include in backtrace.
var from_index = 0
var to_index = kDefaultBacktraceLength;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment