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

Side by Side Diff: test/inspector/debugger/es6-module-script-parsed-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
OLDNEW
(Empty)
1 Debugger.scriptParsed and Debugger.scriptFailedToParse with ES6 module
2
3 Running test: testLoadedModulesOnDebuggerEnable
4 {
5 method : Debugger.scriptParsed
6 params : {
7 endColumn : 1
8 endLine : 3
9 executionContextId : <executionContextId>
10 hasSourceURL : false
11 hash : F8E59942466284E2766FD161CA6FFD024048A807
12 isLiveEdit : false
13 isModule : true
14 scriptId : <scriptId>
15 sourceMapURL :
16 startColumn : 0
17 startLine : 0
18 url : module1.js
19 }
20 }
21
22 Running test: testScriptEventsWhenDebuggerIsEnabled
23 {
24 method : Debugger.scriptParsed
25 params : {
26 endColumn : 1
27 endLine : 3
28 executionContextId : <executionContextId>
29 hasSourceURL : false
30 hash : F8E59942466284E2766FD161CA6FFD024048A807
31 isLiveEdit : false
32 isModule : true
33 scriptId : <scriptId>
34 sourceMapURL :
35 startColumn : 0
36 startLine : 0
37 url : module2.js
38 }
39 }
40 {
41 method : Debugger.scriptFailedToParse
42 params : {
43 endColumn : 1
44 endLine : 0
45 executionContextId : <executionContextId>
46 hasSourceURL : false
47 hash : FF746120E4E4F1BA4CB5762843D429DC872EBA18
48 isModule : true
49 scriptId : <scriptId>
50 sourceMapURL :
51 startColumn : 0
52 startLine : 0
53 url : module-with-syntax-error-2.js
54 }
55 }
OLDNEW
« no previous file with comments | « test/inspector/debugger/es6-module-script-parsed.js ('k') | test/inspector/debugger/script-on-after-compile-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698