debugger: prevent crash when backtrace doesn't come back
This commit is contained in:
parent
fbb74784b5
commit
1f041fe73e
@ -261,6 +261,12 @@ Client.prototype.reqEval = function(expression, cb) {
|
|||||||
|
|
||||||
// Otherwise we need to get the current frame to see which scopes it has.
|
// Otherwise we need to get the current frame to see which scopes it has.
|
||||||
this.reqBacktrace(function(bt) {
|
this.reqBacktrace(function(bt) {
|
||||||
|
if (!bt.frames) {
|
||||||
|
// ??
|
||||||
|
cb({});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var frame = bt.frames[self.currentFrame];
|
var frame = bt.frames[self.currentFrame];
|
||||||
|
|
||||||
var evalFrames = frame.scopes.map(function(s) {
|
var evalFrames = frame.scopes.map(function(s) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user