2017-04-26 15:13:14 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
|
|
|
// Embed a user function in the snapshot and step through it.
|
|
|
|
|
|
|
|
// Flags: --embed 'function c(f, ...args) { return f(...args); }'
|
|
|
|
|
2017-05-19 00:35:45 +00:00
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start('Tests that stepping works on snapshotted function');
|
|
|
|
session.setupScriptMap();
|
2017-04-26 15:13:14 +00:00
|
|
|
|
2017-05-19 00:35:45 +00:00
|
|
|
contextGroup.addScript(`
|
2017-04-26 15:13:14 +00:00
|
|
|
function test() {
|
|
|
|
function f(x) {
|
|
|
|
return x * 2;
|
|
|
|
}
|
|
|
|
debugger;
|
|
|
|
c(f, 2);
|
|
|
|
}
|
|
|
|
//# sourceURL=test.js`);
|
|
|
|
|
|
|
|
Protocol.Debugger.onPaused(message => {
|
|
|
|
InspectorTest.log("paused");
|
|
|
|
var frames = message.params.callFrames;
|
2017-05-19 00:35:45 +00:00
|
|
|
session.logSourceLocation(frames[0].location);
|
2017-04-26 15:13:14 +00:00
|
|
|
Protocol.Debugger.stepInto();
|
|
|
|
})
|
|
|
|
|
|
|
|
Protocol.Debugger.enable()
|
|
|
|
.then(() => Protocol.Runtime.evaluate({ expression: 'test()' }))
|
|
|
|
.then(InspectorTest.completeTest);
|