summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/compile-script-expected.txt
blob: 23e6a64dc583cbffbc0a356516e4779b7e5736a7 (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
Tests Runtime.compileScript
Compiling script: foo1.js
         persist: false
compilation result: 
{
    id : <messageId>
    result : {
        exceptionDetails : {
            columnNumber : 2
            exception : {
                className : SyntaxError
                description : SyntaxError: Unexpected end of input
                objectId : <objectId>
                subtype : error
                type : object
            }
            exceptionId : <exceptionId>
            lineNumber : 1
            scriptId : <scriptId>
            text : Uncaught
        }
    }
}
-----
Compiling script: foo2.js
         persist: true
Debugger.scriptParsed: foo2.js
compilation result: 
{
    id : <messageId>
    result : {
        scriptId : <scriptId>
    }
}
-----
Compiling script: foo3.js
         persist: false
compilation result: 
{
    id : <messageId>
    result : {
    }
}
-----
Compiling script: foo4.js
         persist: false
compilation result: 
{
    id : <messageId>
    result : {
        exceptionDetails : {
            columnNumber : 13
            exception : {
                className : SyntaxError
                description : SyntaxError: Unexpected identifier
                objectId : <objectId>
                subtype : error
                type : object
            }
            exceptionId : <exceptionId>
            lineNumber : 0
            scriptId : <scriptId>
            text : Uncaught
        }
    }
}
-----