Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
debugger: Request backtrace w/o refs, see #1745
Browse files Browse the repository at this point in the history
Fixes #2379
  • Loading branch information
indutny authored and ry committed Dec 19, 2011
1 parent 926365c commit d87f551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_debugger.js
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 d87f551

Please sign in to comment.