Skip to content

Commit 632e6b9

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 96ad5c5 commit 632e6b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/v8/src/debug/debug.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2416,7 +2416,7 @@ DebugCommandProcessor.prototype.restartFrameRequest_ = function(
24162416
frame_mirror = this.exec_state_.frame();
24172417
}
24182418

2419-
var result_description = Debug.LiveEdit.RestartFrame(frame_mirror);
2419+
var result_description = frame_mirror.restart();
24202420
response.body = {result: result_description};
24212421
};
24222422

0 commit comments

Comments
 (0)