use inlineRefs, as it's already impl

pull/5370/head
Fedor Indutny 2011-12-14 18:33:58 +06:00 committed by Ryan Dahl
parent b00b2f08bf
commit a239ea0d40
1 changed files with 1 additions and 1 deletions

View File

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