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

Side by Side Diff: test/inspector/runtime/es6-module-expected.txt

Issue 2740623002: [inspector] added length for scriptParsed notification (Closed)
Patch Set: better Created 3 years, 9 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 Checks basic ES6 modules support. 1 Checks basic ES6 modules support.
2 { 2 {
3 method : Debugger.scriptParsed 3 method : Debugger.scriptParsed
4 params : { 4 params : {
5 endColumn : 17 5 endColumn : 17
6 endLine : 5 6 endLine : 5
7 executionContextId : <executionContextId> 7 executionContextId : <executionContextId>
8 hasSourceURL : false 8 hasSourceURL : false
9 hash : 9C014F7249BAFA12B91017817AD15091D01A9155 9 hash : 9C014F7249BAFA12B91017817AD15091D01A9155
10 isLiveEdit : false 10 isLiveEdit : false
11 isModule : true 11 isModule : true
12 length : 83
12 scriptId : <scriptId> 13 scriptId : <scriptId>
13 sourceMapURL : 14 sourceMapURL :
14 startColumn : 0 15 startColumn : 0
15 startLine : 0 16 startLine : 0
16 url : module1 17 url : module1
17 } 18 }
18 } 19 }
19 { 20 {
20 method : Debugger.scriptParsed 21 method : Debugger.scriptParsed
21 params : { 22 params : {
22 endColumn : 17 23 endColumn : 17
23 endLine : 5 24 endLine : 5
24 executionContextId : <executionContextId> 25 executionContextId : <executionContextId>
25 hasSourceURL : false 26 hasSourceURL : false
26 hash : 443A2FA24A6112E6B9101781E6A19B56BDC396D4 27 hash : 443A2FA24A6112E6B9101781E6A19B56BDC396D4
27 isLiveEdit : false 28 isLiveEdit : false
28 isModule : true 29 isModule : true
30 length : 84
29 scriptId : <scriptId> 31 scriptId : <scriptId>
30 sourceMapURL : 32 sourceMapURL :
31 startColumn : 0 33 startColumn : 0
32 startLine : 0 34 startLine : 0
33 url : module2 35 url : module2
34 } 36 }
35 } 37 }
36 { 38 {
37 method : Debugger.scriptParsed 39 method : Debugger.scriptParsed
38 params : { 40 params : {
39 endColumn : 0 41 endColumn : 0
40 endLine : 8 42 endLine : 8
41 executionContextId : <executionContextId> 43 executionContextId : <executionContextId>
42 hasSourceURL : false 44 hasSourceURL : false
43 hash : 54D834614FBF9B389082DAE06CD3EFC499BEBF13 45 hash : 54D834614FBF9B389082DAE06CD3EFC499BEBF13
44 isLiveEdit : false 46 isLiveEdit : false
45 isModule : true 47 isModule : true
48 length : 191
46 scriptId : <scriptId> 49 scriptId : <scriptId>
47 sourceMapURL : 50 sourceMapURL :
48 startColumn : 0 51 startColumn : 0
49 startLine : 0 52 startLine : 0
50 url : module3 53 url : module3
51 } 54 }
52 } 55 }
53 console.log(module1) 56 console.log(module1)
54 foo (module1:2:10) 57 foo (module1:2:10)
55 (anonymous) (module3:3:12) 58 (anonymous) (module3:3:12)
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 } 183 }
181 { 184 {
182 method : Debugger.scriptFailedToParse 185 method : Debugger.scriptFailedToParse
183 params : { 186 params : {
184 endColumn : 1 187 endColumn : 1
185 endLine : 0 188 endLine : 0
186 executionContextId : <executionContextId> 189 executionContextId : <executionContextId>
187 hasSourceURL : false 190 hasSourceURL : false
188 hash : FF746120E4E4F1BA4CB5762843D429DC872EBA18 191 hash : FF746120E4E4F1BA4CB5762843D429DC872EBA18
189 isModule : true 192 isModule : true
193 length : 1
190 scriptId : <scriptId> 194 scriptId : <scriptId>
191 sourceMapURL : 195 sourceMapURL :
192 startColumn : 0 196 startColumn : 0
193 startLine : 0 197 startLine : 0
194 url : module4 198 url : module4
195 } 199 }
196 } 200 }
197 { 201 {
198 method : Runtime.exceptionThrown 202 method : Runtime.exceptionThrown
199 params : { 203 params : {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 stackTrace : { 235 stackTrace : {
232 callFrames : [ 236 callFrames : [
233 ] 237 ]
234 } 238 }
235 text : Uncaught SyntaxError: Unexpected token } 239 text : Uncaught SyntaxError: Unexpected token }
236 url : module4 240 url : module4
237 } 241 }
238 timestamp : <timestamp> 242 timestamp : <timestamp>
239 } 243 }
240 } 244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698