From d9377f5eb0ca6b0dbf529c09f8506a141903250b Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Fri, 9 Dec 2011 14:41:48 +0600 Subject: [PATCH] request backtrace w/o refs, see #1745 --- lib/_debugger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/_debugger.js b/lib/_debugger.js index 6622e6cde5..b0fb61cc6c 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' } , cb); + this.req({ command: 'backtrace', noRefs: true } , cb); };