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

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

Issue 2755863002: [Devtools] Add stacktrace to protocol for scriptParsed event (Closed)
Patch Set: fix tests 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/inspector/debugger/script-parsed-for-runtime-evaluate.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/debugger/script-parsed-for-runtime-evaluate-expected.txt
diff --git a/test/inspector/debugger/script-parsed-for-runtime-evaluate-expected.txt b/test/inspector/debugger/script-parsed-for-runtime-evaluate-expected.txt
index e5eb11ef00e10de617a80eab4db1edfaad050644..75014e1144f163c6cf42789352b3c4e217fe42ce 100644
--- a/test/inspector/debugger/script-parsed-for-runtime-evaluate-expected.txt
+++ b/test/inspector/debugger/script-parsed-for-runtime-evaluate-expected.txt
@@ -1,4 +1,4 @@
-Checks that inspector reports script compiled in Runtime.evaluate,Runtime.callFunctionOn and Runtime.compileScript
+Checks that inspector reports script compiled in Runtime.evaluate, Runtime.callFunctionOn and Runtime.compileScript
Runtime.evaluate with valid expression
{
method : Debugger.scriptParsed
@@ -111,3 +111,156 @@ Runtime.compileScript with syntax error
}
}
Runtime.compileScript persistScript: false (should be no script events)
+Runtime.evaluate compiled script with stack trace
+{
+ method : Debugger.scriptParsed
+ params : {
+ endColumn : 8
+ endLine : 0
+ executionContextId : <executionContextId>
+ hasSourceURL : false
+ hash : A2185340E4E4F1BA4CB5762843D429DC872EBA18
+ isLiveEdit : false
+ isModule : false
+ length : 8
+ scriptId : <scriptId>
+ sourceMapURL :
+ startColumn : 0
+ startLine : 0
+ url :
+ }
+}
+{
+ method : Debugger.scriptParsed
+ params : {
+ endColumn : 39
+ endLine : 4
+ executionContextId : <executionContextId>
+ hasSourceURL : true
+ hash : 6AF4ED72C355E471C4E94D74464A25541932A242
+ isLiveEdit : false
+ isModule : false
+ length : 86
+ scriptId : <scriptId>
+ sourceMapURL :
+ stackTrace : {
+ callFrames : [
+ [0] : {
+ columnNumber : 2
+ functionName : fooTop
+ lineNumber : 10
+ scriptId : <scriptId>
+ url : top-frame.js
+ }
+ ]
+ }
+ startColumn : 0
+ startLine : 0
+ url : second-frame.js
+ }
+}
+{
+ method : Debugger.scriptParsed
+ params : {
+ endColumn : 4
+ endLine : 0
+ executionContextId : <executionContextId>
+ hasSourceURL : false
+ hash : 9D04F733E4E4F1BA4CB5762843D429DC872EBA18
+ isLiveEdit : false
+ isModule : false
+ length : 4
+ scriptId : <scriptId>
+ sourceMapURL :
+ stackTrace : {
+ callFrames : [
+ [0] : {
+ columnNumber : 6
+ functionName : foo
+ lineNumber : 2
+ scriptId : <scriptId>
+ url : second-frame.js
+ }
+ ]
+ }
+ startColumn : 0
+ startLine : 0
+ url :
+ }
+}
+Runtime.evaluate compile script error with stack trace
+{
+ method : Debugger.scriptParsed
+ params : {
+ endColumn : 12
+ endLine : 0
+ executionContextId : <executionContextId>
+ hasSourceURL : false
+ hash : A218534034AA14704CB5762843D429DC872EBA18
+ isLiveEdit : false
+ isModule : false
+ length : 12
+ scriptId : <scriptId>
+ sourceMapURL :
+ startColumn : 0
+ startLine : 0
+ url :
+ }
+}
+{
+ method : Debugger.scriptParsed
+ params : {
+ endColumn : 48
+ endLine : 4
+ executionContextId : <executionContextId>
+ hasSourceURL : true
+ hash : 5FD5C8C38F2D44588A4078148B0BC5635152B0C0
+ isLiveEdit : false
+ isModule : false
+ length : 98
+ scriptId : <scriptId>
+ sourceMapURL :
+ stackTrace : {
+ callFrames : [
+ [0] : {
+ columnNumber : 2
+ functionName : fooTopFail
+ lineNumber : 20
+ scriptId : <scriptId>
+ url : top-frame-fail.js
+ }
+ ]
+ }
+ startColumn : 0
+ startLine : 0
+ url : second-frame-fail.js
+ }
+}
+{
+ method : Debugger.scriptFailedToParse
+ params : {
+ endColumn : 3
+ endLine : 0
+ executionContextId : <executionContextId>
+ hasSourceURL : false
+ hash : 9D04F7336C348CA34CB5762843D429DC872EBA18
+ isModule : false
+ length : 3
+ scriptId : <scriptId>
+ sourceMapURL :
+ stackTrace : {
+ callFrames : [
+ [0] : {
+ columnNumber : 6
+ functionName : fooFail
+ lineNumber : 2
+ scriptId : <scriptId>
+ url : second-frame-fail.js
+ }
+ ]
+ }
+ startColumn : 0
+ startLine : 0
+ url :
+ }
+}
« no previous file with comments | « test/inspector/debugger/script-parsed-for-runtime-evaluate.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698