From 7f4c94c6a6d4cdee2d432df43d592207ea5beae2 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 6622e6cde5b..5a036a6a390 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', arguments: { inlineRefs: true } } , cb); };