Skip to content

Commit

Permalink
deps: backport 125ac66 from v8 upstream
Browse files Browse the repository at this point in the history
As requested in #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: #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 committed Apr 20, 2016
1 parent 96ad5c5 commit 632e6b9
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 @@ -2416,7 +2416,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 632e6b9

Please sign in to comment.