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 nodejs#5221

Original commit message:

  fix debug command processor wrt restart frame.

  R=jkummerow@chromium.org
  BUG=v8:4757
  LOG=N

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

  Cr-Commit-Position: refs/heads/master@{nodejs#33983}
  • Loading branch information
Myles Borins committed Apr 6, 2016
1 parent d4eafd0 commit cf289b7
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 cf289b7

Please sign in to comment.