debugger: Request backtrace w/o refs, see #1745

Fixes #2379
This commit is contained in:
Fedor Indutny 2011-12-09 14:41:48 +06:00 committed by Ryan Dahl
parent 926365c9f8
commit d87f551f36

View File

@ -405,7 +405,7 @@ Client.prototype.reqFrameEval = function(expression, frame, cb) {
// reqBacktrace(cb)
// TODO: from, to, bottom
Client.prototype.reqBacktrace = function(cb) {
this.req({ command: 'backtrace' } , cb);
this.req({ command: 'backtrace', arguments: { inlineRefs: true } } , cb);
};