| Index: Source/devtools/protocol.json
|
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
|
| index a548f63d462d76661a9095bc4683baec583a9655..1b84d48aa5d1f53034f54de36cf720e6b74ee19f 100644
|
| --- a/Source/devtools/protocol.json
|
| +++ b/Source/devtools/protocol.json
|
| @@ -797,7 +797,8 @@
|
| ],
|
| "returns": [
|
| { "name": "result", "$ref": "RemoteObject", "description": "Evaluation result." },
|
| - { "name": "wasThrown", "type": "boolean", "optional": true, "description": "True if the result was thrown during the evaluation." }
|
| + { "name": "wasThrown", "type": "boolean", "optional": true, "description": "True if the result was thrown during the evaluation." },
|
| + { "name": "exceptionDetails", "$ref": "Debugger.ExceptionDetails", "optional": true, "hidden": true, "description": "Exception details."}
|
| ],
|
| "description": "Evaluates expression on global object."
|
| },
|
| @@ -3216,7 +3217,8 @@
|
| ],
|
| "returns": [
|
| { "name": "result", "$ref": "Runtime.RemoteObject", "description": "Object wrapper for the evaluation result." },
|
| - { "name": "wasThrown", "type": "boolean", "optional": true, "description": "True if the result was thrown during the evaluation." }
|
| + { "name": "wasThrown", "type": "boolean", "optional": true, "description": "True if the result was thrown during the evaluation." },
|
| + { "name": "exceptionDetails", "$ref": "Debugger.ExceptionDetails", "optional": true, "hidden": true, "description": "Exception details."}
|
| ],
|
| "description": "Evaluates expression on a given call frame."
|
| },
|
|
|