summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/wasm-stepping-to-js-expected.txt
blob: 29ea23e14e770b2171ea78d050aff9e0f28cb686 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Tests stepping to javascript from wasm
Installing code and global variable.
Calling instantiate function.
Waiting for wasm scripts to be parsed.
Ignoring script with url v8://test/callInstantiate
Got wasm script: wasm://wasm/242f4a16
Setting breakpoint at start of wasm function
{
    columnNumber : 33
    lineNumber : 0
    scriptId : <scriptId>
}
Start run 1
paused
function test() {
  #debugger;
  instance.exports.main();

Debugger.resume
paused
Script wasm://wasm/242f4a16 byte offset 33: Wasm opcode 0x01
Debugger.stepOut
paused
  instance.exports.main();
  var x = #1;
  x++;

Debugger.resume
exports.main returned!
Finished run 1!

Start run 2
paused
function test() {
  #debugger;
  instance.exports.main();

Debugger.resume
paused
Script wasm://wasm/242f4a16 byte offset 33: Wasm opcode 0x01
Debugger.stepOver
paused
Script wasm://wasm/242f4a16 byte offset 34: Wasm opcode 0x0b
Debugger.resume
exports.main returned!
Finished run 2!

Start run 3
paused
function test() {
  #debugger;
  instance.exports.main();

Debugger.resume
paused
Script wasm://wasm/242f4a16 byte offset 33: Wasm opcode 0x01
Debugger.stepInto
paused
Script wasm://wasm/242f4a16 byte offset 34: Wasm opcode 0x0b
Debugger.resume
exports.main returned!
Finished run 3!