summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/resource-name-to-url-expected.txt
blob: 2e6e589b2517d3feac35e9dba9b10caadb068f6b (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
Tests V8InspectorClient::resourceNameToUrl.
Check script with url:
{
    method : Debugger.scriptParsed
    params : {
        endColumn : 16
        endLine : 0
        executionContextId : <executionContextId>
        hasSourceURL : false
        hash : 033b33d191ed51ed823355d865eb871d811403e2
        isLiveEdit : false
        isModule : false
        length : 16
        scriptId : <scriptId>
        sourceMapURL : 
        startColumn : 0
        startLine : 0
        url : prefix://url
    }
}
Check script with sourceURL comment:
{
    method : Debugger.scriptParsed
    params : {
        endColumn : 37
        endLine : 0
        executionContextId : <executionContextId>
        hasSourceURL : true
        hash : 06c136ce206c5f505f32af524e6ec71b5baa0bbb
        isLiveEdit : false
        isModule : false
        length : 37
        scriptId : <scriptId>
        sourceMapURL : 
        startColumn : 0
        startLine : 0
        url : foo.js
    }
}
Check script failed to parse:
{
    method : Debugger.scriptFailedToParse
    params : {
        endColumn : 15
        endLine : 0
        executionContextId : <executionContextId>
        hasSourceURL : false
        hash : 033b33d191ed51ed1f44cd0465eb871d811403e2
        isModule : false
        length : 15
        scriptId : <scriptId>
        sourceMapURL : 
        startColumn : 0
        startLine : 0
        url : prefix://url
    }
}
Check script failed to parse with sourceURL comment:
{
    method : Debugger.scriptFailedToParse
    params : {
        endColumn : 36
        endLine : 0
        executionContextId : <executionContextId>
        hasSourceURL : true
        hash : 23a2885951475580023e2a742563d78876d8f05e
        isModule : false
        length : 36
        scriptId : <scriptId>
        sourceMapURL : 
        startColumn : 0
        startLine : 0
        url : foo.js
    }
}
Test runtime stack trace:
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
                description : 42
                type : number
                value : 42
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 14
                    functionName : foo
                    lineNumber : 2
                    scriptId : <scriptId>
                    url : prefix://url
                }
                [1] : {
                    columnNumber : 0
                    functionName : 
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : boo.js
                }
                [2] : {
                    columnNumber : 4
                    functionName : 
                    lineNumber : 4
                    scriptId : <scriptId>
                    url : prefix://url
                }
            ]
        }
        timestamp : <timestamp>
        type : log
    }
}
Test debugger stack trace:
[
    [0] : prefix://url
    [1] : boo.js
    [2] : prefix://url
]