From: Fedor Indutny Date: Wed, 14 Dec 2011 07:53:30 +0000 (+0600) Subject: pass noRefs as arguments X-Git-Tag: v0.7.0~100 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b00b2f08bf78e735f206051942f3d22ad5b3b0ed;p=platform%2Fupstream%2Fnodejs.git pass noRefs as arguments --- diff --git a/lib/_debugger.js b/lib/_debugger.js index 553edb8..eb281f7 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', noRefs: true } , cb); + this.req({ command: 'backtrace', arguments: { noRefs: true } } , cb); };