summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/set-instrumentation-breakpoint-expected.txt
blob: 94f58aacd14891e87d8129912219988ad89a157e (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
Debugger.setInstrumentationBreakpoint

Running test: testSetTwice
set breakpoint..
{
    breakpointId : <breakpointId>
}
set breakpoint again..
{
    error : {
        code : -32000
        message : Instrumentation breakpoint is already enabled.
    }
    id : <messageId>
}
remove breakpoint..
{
    id : <messageId>
    result : {
    }
}

Running test: testScriptParsed
set breakpoint and evaluate script..
paused with reason: instrumentation
{
    scriptId : <scriptId>
    url : foo.js
}
set breakpoint and evaluate script with sourceMappingURL..
paused with reason: instrumentation
{
    scriptId : <scriptId>
    sourceMapURL : map.js
    url : foo.js
}
remove breakpoint..
{
    id : <messageId>
    result : {
    }
}
evaluate script again..

Running test: testScriptWithSourceMapParsed
set breakpoint for scriptWithSourceMapParsed..
evaluate script without sourceMappingURL..
evaluate script with sourceMappingURL..
paused with reason: instrumentation
{
    scriptId : <scriptId>
    sourceMapURL : map.js
    url : foo.js
}
remove breakpoint..
{
    id : <messageId>
    result : {
    }
}
evaluate script without sourceMappingURL..
evaluate script with sourceMappingURL..

Running test: testBlackboxing
set breakpoint and evaluate blackboxed script..
evaluate not blackboxed script..
paused with reason: instrumentation
{
    scriptId : <scriptId>
    url : bar.js
}
evaluate blackboxed script that contains not blackboxed one..
paused with reason: instrumentation
{
    scriptId : <scriptId>
    url : bar.js
}

Running test: testCompileFirstRunLater
set breakpoint for scriptWithSourceMapParsed..
compile script with sourceMappingURL..
evaluate script without sourceMappingURL..
run previously compiled script with sourceMappingURL..
paused with reason: instrumentation
{
    scriptId : <scriptId>
    sourceMapURL : boo.js
    url : foo.js
}