Skip to content

Commit d1fca27

Browse files
author
Myles Borins
committed
deps: backport 125ac66 from v8 upstream
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]>
1 parent 29f821b commit d1fca27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/v8/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)