Browse Source

request backtrace w/o refs, see #1745

v0.7.4-release
Fedor Indutny 13 years ago
committed by Ryan Dahl
parent
commit
d9377f5eb0
  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' } , cb);
this.req({ command: 'backtrace', noRefs: true } , cb);
};

Loading…
Cancel
Save