29c4cf0e3c
R=bmeurer@chromium.org Bug: chromium:1303521 Change-Id: Iff7247fda94037ff4f9d37f334d386eb4e63ce62 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3595819 Commit-Queue: Simon Zünd <szuend@chromium.org> Auto-Submit: Simon Zünd <szuend@chromium.org> Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Commit-Queue: Benedikt Meurer <bmeurer@chromium.org> Cr-Commit-Position: refs/heads/main@{#80038}
32 lines
798 B
JavaScript
32 lines
798 B
JavaScript
// Copyright 2022 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
const {session, Protocol} =
|
|
InspectorTest.start('Checks that restarting the top frame hits a debugger statement twice');
|
|
|
|
session.setupScriptMap();
|
|
|
|
const source = `
|
|
function foo() {
|
|
const x = 1;
|
|
debugger;
|
|
const y = 2;
|
|
}
|
|
foo();
|
|
`;
|
|
|
|
(async () => {
|
|
await Protocol.Debugger.enable();
|
|
|
|
const { callFrames } = await InspectorTest.evaluateAndWaitForPause(source);
|
|
|
|
await InspectorTest.restartFrameAndWaitForPause(callFrames, 0);
|
|
|
|
Protocol.Debugger.resume(); // Resuming hits the 'debugger' stmt again.
|
|
await Protocol.Debugger.oncePaused();
|
|
await Protocol.Debugger.resume();
|
|
|
|
InspectorTest.completeTest();
|
|
})();
|