aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/step-snapshot.js
blob: a4ecbf2f285cf0a6ecbc6082ffe7d94a18606b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// 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); }'

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

contextGroup.addScript(`
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;
  session.logSourceLocation(frames[0].location);
  Protocol.Debugger.stepInto();
})

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