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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt

Issue 2249743006: [DevTools] Fill ExceptionDetails with more details, unify usage across protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: browser test Created 4 years, 4 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: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt b/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt
index 75cc0adf7e2b4c76aa12da5757a36bbda4323d3e..d305607f0f3c897a83900f3c596af7de6d86a7f4 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt
@@ -3,9 +3,17 @@ Compiling script: foo1.js
compilation result: {
exceptionDetails : {
columnNumber : 2
+ exception : {
+ className : SyntaxError
+ description : SyntaxError: Unexpected end of input
+ objectId : 0
+ subtype : error
+ type : object
+ }
+ exceptionId : 0
lineNumber : 1
scriptId : 0
- text : Uncaught SyntaxError: Unexpected end of input
+ text : Uncaught
}
}
-----
@@ -26,9 +34,17 @@ Compiling script: foo4.js
compilation result: {
exceptionDetails : {
columnNumber : 13
+ exception : {
+ className : SyntaxError
+ description : SyntaxError: Unexpected identifier
+ objectId : 0
+ subtype : error
+ type : object
+ }
+ exceptionId : 0
lineNumber : 0
scriptId : 0
- text : Uncaught SyntaxError: Unexpected identifier
+ text : Uncaught
}
}
-----

Powered by Google App Engine
This is Rietveld 408576698