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

Unified 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, 11 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
Index: test/inspector/debugger/es6-module-script-parsed-expected.txt
diff --git a/test/inspector/debugger/es6-module-script-parsed-expected.txt b/test/inspector/debugger/es6-module-script-parsed-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..26b35c5b2687e7e85fcb05e93d9769b7abfddedb
--- /dev/null
+++ b/test/inspector/debugger/es6-module-script-parsed-expected.txt
@@ -0,0 +1,55 @@
+Debugger.scriptParsed and Debugger.scriptFailedToParse with ES6 module
+
+Running test: testLoadedModulesOnDebuggerEnable
+{
+ method : Debugger.scriptParsed
+ params : {
+ endColumn : 1
+ endLine : 3
+ executionContextId : <executionContextId>
+ hasSourceURL : false
+ hash : F8E59942466284E2766FD161CA6FFD024048A807
+ isLiveEdit : false
+ isModule : true
+ scriptId : <scriptId>
+ sourceMapURL :
+ startColumn : 0
+ startLine : 0
+ url : module1.js
+ }
+}
+
+Running test: testScriptEventsWhenDebuggerIsEnabled
+{
+ method : Debugger.scriptParsed
+ params : {
+ endColumn : 1
+ endLine : 3
+ executionContextId : <executionContextId>
+ hasSourceURL : false
+ hash : F8E59942466284E2766FD161CA6FFD024048A807
+ isLiveEdit : false
+ isModule : true
+ scriptId : <scriptId>
+ sourceMapURL :
+ startColumn : 0
+ startLine : 0
+ url : module2.js
+ }
+}
+{
+ method : Debugger.scriptFailedToParse
+ params : {
+ endColumn : 1
+ endLine : 0
+ executionContextId : <executionContextId>
+ hasSourceURL : false
+ hash : FF746120E4E4F1BA4CB5762843D429DC872EBA18
+ isModule : true
+ scriptId : <scriptId>
+ sourceMapURL :
+ startColumn : 0
+ startLine : 0
+ url : module-with-syntax-error-2.js
+ }
+}
« 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