Browse Source

pass noRefs as arguments

v0.7.4-release
Fedor Indutny 13 years ago
committed by Ryan Dahl
parent
commit
b00b2f08bf
  1. 2
      lib/_debugger.js

2
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);
};

Loading…
Cancel
Save