From a239ea0d4027ff0edbced6aae8d08420cb41d871 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Wed, 14 Dec 2011 18:33:58 +0600 Subject: [PATCH] use inlineRefs, as it's already impl --- lib/_debugger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/_debugger.js b/lib/_debugger.js index eb281f796ef..7203278b333 100644 --- a/lib/_debugger.js +++ b/lib/_debugger.js @@ -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', arguments: { noRefs: true } } , cb); + this.req({ command: 'backtrace', arguments: { inlineRefs: true } } , cb); };