mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 02:01:52 +00:00

PR-URL: https://github.com/nodejs/node/pull/13263 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
28 lines
1.0 KiB
JavaScript
28 lines
1.0 KiB
JavaScript
// Copyright 2016 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.
|
|
|
|
InspectorTest.log('Check that stepInto at then end of the script go to next user script instead InjectedScriptSource.js.');
|
|
|
|
(async function test() {
|
|
InspectorTest.setupScriptMap();
|
|
await Protocol.Debugger.enable();
|
|
Protocol.Runtime.evaluate({expression: '(function boo() { setTimeout(() => 239, 0); debugger; })()\n'});
|
|
await waitPauseAndDumpLocation();
|
|
Protocol.Debugger.stepInto();
|
|
await waitPauseAndDumpLocation();
|
|
Protocol.Debugger.stepInto();
|
|
await waitPauseAndDumpLocation();
|
|
Protocol.Debugger.stepInto();
|
|
await waitPauseAndDumpLocation();
|
|
await Protocol.Debugger.disable();
|
|
InspectorTest.completeTest();
|
|
})();
|
|
|
|
async function waitPauseAndDumpLocation() {
|
|
var message = await Protocol.Debugger.oncePaused();
|
|
InspectorTest.log('paused at:');
|
|
InspectorTest.logSourceLocation(message.params.callFrames[0].location);
|
|
return message;
|
|
}
|