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

Side by Side Diff: test/inspector/debugger/script-parsed-for-runtime-evaluate-expected.txt

Issue 2499273003: [inspector] introduced Script::TYPE_INSPECTOR (Closed)
Patch Set: rebased Created 4 years, 1 month 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 Checks that inspector reports script compiled in Runtime.evaluate,Runtime.callFu nctionOn and Runtime.compileScript
2 Runtime.evaluate with valid expression
3 {
4 method : Debugger.scriptParsed
5 params : {
6 endColumn : 29
7 endLine : 0
8 executionContextId : <executionContextId>
9 hasSourceURL : true
10 hash : 9D04F7335D1661503EAB9AF3EACAF92020803F34
11 isLiveEdit : false
12 scriptId : <scriptId>
13 sourceMapURL :
14 startColumn : 0
15 startLine : 0
16 url : evaluate.js
17 }
18 }
19 Runtime.evaluate with syntax error
20 {
21 method : Debugger.scriptFailedToParse
22 params : {
23 endColumn : 39
24 endLine : 0
25 executionContextId : <executionContextId>
26 hasSourceURL : true
27 hash : 9BCA34A10E5386925E74C1716C857BEB02821E15
28 scriptId : <scriptId>
29 sourceMapURL :
30 startColumn : 0
31 startLine : 0
32 url : evaluate-syntax-error.js
33 }
34 }
35 Runtime.callFunctionOn with valid functionDeclaration
36 {
37 method : Debugger.scriptParsed
38 params : {
39 endColumn : 18
40 endLine : 0
41 executionContextId : <executionContextId>
42 hasSourceURL : false
43 hash : 9D04CEA1B54DF92A01A0498543D429DC872EBA18
44 isLiveEdit : false
45 scriptId : <scriptId>
46 sourceMapURL :
47 startColumn : 0
48 startLine : 0
49 url :
50 }
51 }
52 Runtime.callFunctionOn with syntax error
53 {
54 method : Debugger.scriptFailedToParse
55 params : {
56 endColumn : 3
57 endLine : 0
58 executionContextId : <executionContextId>
59 hasSourceURL : false
60 hash : 9D04D83251E2B7F64CB5762843D429DC872EBA18
61 scriptId : <scriptId>
62 sourceMapURL :
63 startColumn : 0
64 startLine : 0
65 url :
66 }
67 }
68 Runtime.compileScript with valid expression
69 {
70 method : Debugger.scriptParsed
71 params : {
72 endColumn : 4
73 endLine : 0
74 executionContextId : <executionContextId>
75 hasSourceURL : false
76 hash : 9D04F733E4E4F1BA4CB5762843D429DC872EBA18
77 isLiveEdit : false
78 scriptId : <scriptId>
79 sourceMapURL :
80 startColumn : 0
81 startLine : 0
82 url : compile-script.js
83 }
84 }
85 Runtime.compileScript with syntax error
86 {
87 method : Debugger.scriptFailedToParse
88 params : {
89 endColumn : 1
90 endLine : 0
91 executionContextId : <executionContextId>
92 hasSourceURL : false
93 hash : FF746120E4E4F1BA4CB5762843D429DC872EBA18
94 scriptId : <scriptId>
95 sourceMapURL :
96 startColumn : 0
97 startLine : 0
98 url : compile-script-syntax-error.js
99 }
100 }
101 Runtime.compileScript persistScript: false (should be no script events)
OLDNEW
« no previous file with comments | « test/inspector/debugger/script-parsed-for-runtime-evaluate.js ('k') | test/inspector/runtime/call-function-on-async.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698