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

Commit ba287e9

Browse files
Myles Borinsgibfahn
authored andcommitted
deps: backport 125ac66 from v8 upstream
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]>
1 parent e617a67 commit ba287e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/v8z/src/debug-debugger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2384,7 +2384,7 @@ DebugCommandProcessor.prototype.restartFrameRequest_ = function(
23842384
frame_mirror = this.exec_state_.frame();
23852385
}
23862386

2387-
var result_description = Debug.LiveEdit.RestartFrame(frame_mirror);
2387+
var result_description = frame_mirror.restart();
23882388
response.body = {result: result_description};
23892389
};
23902390

0 commit comments

Comments
 (0)