break-on-exception-compiler-errors-expected.txt 2.08 KB
Newer Older
1 2 3 4 5 6
Break on exceptions from compiler errors.

Running test: testUnexpectedEndOfInput
Runs '+++'
Runtime.evaluate exceptionDetails:
{
7
    columnNumber : 3
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
    exception : {
        className : SyntaxError
        description : SyntaxError: Unexpected end of input
        objectId : <objectId>
        subtype : error
        type : object
    }
    exceptionId : <exceptionId>
    lineNumber : 0
    scriptId : <scriptId>
    text : Uncaught
}

Running test: testUnexpectedIdentifier
Runs 'x x'
Runtime.evaluate exceptionDetails:
{
    columnNumber : 2
    exception : {
        className : SyntaxError
        description : SyntaxError: Unexpected identifier
        objectId : <objectId>
        subtype : error
        type : object
    }
    exceptionId : <exceptionId>
    lineNumber : 0
    scriptId : <scriptId>
    text : Uncaught
}

Running test: testEvalUnexpectedEndOfInput
Runs eval('+++')
paused on exception:
{
    className : SyntaxError
    description : SyntaxError: Unexpected end of input     at <anonymous>:1:1
    objectId : <objectId>
    subtype : error
    type : object
    uncaught : false
}
Runtime.evaluate exceptionDetails:
{
52
    columnNumber : 3
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
    exception : {
        className : SyntaxError
        description : SyntaxError: Unexpected end of input     at <anonymous>:1:1
        objectId : <objectId>
        subtype : error
        type : object
    }
    exceptionId : <exceptionId>
    lineNumber : 0
    scriptId : <scriptId>
    text : Uncaught
}

Running test: testEvalUnexpectedIdentifier
Runs eval('x x')
paused on exception:
{
    className : SyntaxError
    description : SyntaxError: Unexpected identifier     at <anonymous>:1:1
    objectId : <objectId>
    subtype : error
    type : object
    uncaught : false
}
Runtime.evaluate exceptionDetails:
{
    columnNumber : 2
    exception : {
        className : SyntaxError
        description : SyntaxError: Unexpected identifier     at <anonymous>:1:1
        objectId : <objectId>
        subtype : error
        type : object
    }
    exceptionId : <exceptionId>
    lineNumber : 0
    scriptId : <scriptId>
    text : Uncaught
}