Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(454)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt

Issue 2249743006: [DevTools] Fill ExceptionDetails with more details, unify usage across protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: browser test Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 Compiling script: foo1.js 1 Compiling script: foo1.js
2 persist: false 2 persist: false
3 compilation result: { 3 compilation result: {
4 exceptionDetails : { 4 exceptionDetails : {
5 columnNumber : 2 5 columnNumber : 2
6 exception : {
7 className : SyntaxError
8 description : SyntaxError: Unexpected end of input
9 objectId : 0
10 subtype : error
11 type : object
12 }
13 exceptionId : 0
6 lineNumber : 1 14 lineNumber : 1
7 scriptId : 0 15 scriptId : 0
8 text : Uncaught SyntaxError: Unexpected end of input 16 text : Uncaught
9 } 17 }
10 } 18 }
11 ----- 19 -----
12 Compiling script: foo2.js 20 Compiling script: foo2.js
13 persist: true 21 persist: true
14 Debugger.scriptParsed: foo2.js 22 Debugger.scriptParsed: foo2.js
15 compilation result: { 23 compilation result: {
16 scriptId : 0 24 scriptId : 0
17 } 25 }
18 ----- 26 -----
19 Compiling script: foo3.js 27 Compiling script: foo3.js
20 persist: false 28 persist: false
21 compilation result: { 29 compilation result: {
22 } 30 }
23 ----- 31 -----
24 Compiling script: foo4.js 32 Compiling script: foo4.js
25 persist: false 33 persist: false
26 compilation result: { 34 compilation result: {
27 exceptionDetails : { 35 exceptionDetails : {
28 columnNumber : 13 36 columnNumber : 13
37 exception : {
38 className : SyntaxError
39 description : SyntaxError: Unexpected identifier
40 objectId : 0
41 subtype : error
42 type : object
43 }
44 exceptionId : 0
29 lineNumber : 0 45 lineNumber : 0
30 scriptId : 0 46 scriptId : 0
31 text : Uncaught SyntaxError: Unexpected identifier 47 text : Uncaught
32 } 48 }
33 } 49 }
34 ----- 50 -----
35 51
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698