step-snapshot.js 941 Bytes
Newer Older
1 2 3 4 5 6 7
// 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); }'
8
// Flags: --no-turbo-rewrite-far-jumps
9

10 11
let {session, contextGroup, Protocol} = InspectorTest.start('Tests that stepping works on snapshotted function');
session.setupScriptMap();
12

13
contextGroup.addScript(`
14 15 16 17 18 19 20 21 22 23 24 25
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;
26
  session.logSourceLocation(frames[0].location);
27 28 29 30 31 32
  Protocol.Debugger.stepInto();
})

Protocol.Debugger.enable()
  .then(() => Protocol.Runtime.evaluate({ expression: 'test()' }))
  .then(InspectorTest.completeTest);