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

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

Issue 2663973002: [inspector] added experimental is_module flag for script parsed events (Closed)
Patch Set: rebased Created 3 years, 10 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
« no previous file with comments | « test/inspector/runtime/es6-module.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 scriptId : <scriptId> 12 scriptId : <scriptId>
12 sourceMapURL : 13 sourceMapURL :
13 startColumn : 0 14 startColumn : 0
14 startLine : 0 15 startLine : 0
15 url : module1 16 url : module1
16 } 17 }
17 } 18 }
18 { 19 {
19 method : Debugger.scriptParsed 20 method : Debugger.scriptParsed
20 params : { 21 params : {
21 endColumn : 17 22 endColumn : 17
22 endLine : 5 23 endLine : 5
23 executionContextId : <executionContextId> 24 executionContextId : <executionContextId>
24 hasSourceURL : false 25 hasSourceURL : false
25 hash : 443A2FA24A6112E6B9101781E6A19B56BDC396D4 26 hash : 443A2FA24A6112E6B9101781E6A19B56BDC396D4
26 isLiveEdit : false 27 isLiveEdit : false
28 isModule : true
27 scriptId : <scriptId> 29 scriptId : <scriptId>
28 sourceMapURL : 30 sourceMapURL :
29 startColumn : 0 31 startColumn : 0
30 startLine : 0 32 startLine : 0
31 url : module2 33 url : module2
32 } 34 }
33 } 35 }
34 { 36 {
35 method : Debugger.scriptParsed 37 method : Debugger.scriptParsed
36 params : { 38 params : {
37 endColumn : 0 39 endColumn : 0
38 endLine : 9 40 endLine : 9
39 executionContextId : <executionContextId> 41 executionContextId : <executionContextId>
40 hasSourceURL : false 42 hasSourceURL : false
41 hash : 54D834614FBF9B389082DAE06CD3EFC499BEBF13 43 hash : 54D834614FBF9B389082DAE06CD3EFC499BEBF13
42 isLiveEdit : false 44 isLiveEdit : false
45 isModule : true
43 scriptId : <scriptId> 46 scriptId : <scriptId>
44 sourceMapURL : 47 sourceMapURL :
45 startColumn : 0 48 startColumn : 0
46 startLine : 0 49 startLine : 0
47 url : module3 50 url : module3
48 } 51 }
49 } 52 }
50 console.log(module1) 53 console.log(module1)
51 foo (module1:2:10) 54 foo (module1:2:10)
52 (anonymous) (module3:3:12) 55 (anonymous) (module3:3:12)
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 } 179 }
177 } 180 }
178 { 181 {
179 method : Debugger.scriptFailedToParse 182 method : Debugger.scriptFailedToParse
180 params : { 183 params : {
181 endColumn : 1 184 endColumn : 1
182 endLine : 0 185 endLine : 0
183 executionContextId : <executionContextId> 186 executionContextId : <executionContextId>
184 hasSourceURL : false 187 hasSourceURL : false
185 hash : FF746120E4E4F1BA4CB5762843D429DC872EBA18 188 hash : FF746120E4E4F1BA4CB5762843D429DC872EBA18
189 isModule : true
186 scriptId : <scriptId> 190 scriptId : <scriptId>
187 sourceMapURL : 191 sourceMapURL :
188 startColumn : 0 192 startColumn : 0
189 startLine : 0 193 startLine : 0
190 url : module4 194 url : module4
191 } 195 }
192 } 196 }
193 { 197 {
194 method : Runtime.exceptionThrown 198 method : Runtime.exceptionThrown
195 params : { 199 params : {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 stackTrace : { 231 stackTrace : {
228 callFrames : [ 232 callFrames : [
229 ] 233 ]
230 } 234 }
231 text : Uncaught SyntaxError: Unexpected token } 235 text : Uncaught SyntaxError: Unexpected token }
232 url : module4 236 url : module4
233 } 237 }
234 timestamp : <timestamp> 238 timestamp : <timestamp>
235 } 239 }
236 } 240 }
OLDNEW
« no previous file with comments | « test/inspector/runtime/es6-module.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698