Skip to content

Commit

Permalink
debugger: Request backtrace w/o refs, see nodejs#1745
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny authored and alexkwolfe committed Dec 23, 2011
1 parent a24f417 commit 3125c79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};


Expand Down

0 comments on commit 3125c79

Please sign in to comment.