Skip to content
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.

Commit

Permalink
deps: backport 125ac66 from v8 upstream
Browse files Browse the repository at this point in the history
As requested in nodejs#5221

Original commit message:

  fix debug command processor wrt restart frame.

  [email protected]
  BUG=v8:4757
  LOG=N

  Review URL: https://codereview.chromium.org/1700693002

  Cr-Commit-Position: refs/heads/master@{#33983}

PR-URL: nodejs/node#6086
Reviewed-By: Ben Noordhuis <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
Myles Borins authored and jasnell committed Apr 26, 2016
1 parent beb5af2 commit e6e1bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/v8/src/debug/debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -2396,7 +2396,7 @@ DebugCommandProcessor.prototype.restartFrameRequest_ = function(
frame_mirror = this.exec_state_.frame();
}

var result_description = Debug.LiveEdit.RestartFrame(frame_mirror);
var result_description = frame_mirror.restart();
response.body = {result: result_description};
};

Expand Down

0 comments on commit e6e1bf7

Please sign in to comment.