| Index: Source/devtools/protocol.json
|
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
|
| index 169622b25a5fdcb73a09ec1040b4b0a03d971eea..ee3ca96974092e74e9de66ddc44ed98aa3c3df8a 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, "description": "Exception details."}
|
| ],
|
| "description": "Evaluates expression on global object."
|
| },
|
| @@ -3204,7 +3205,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, "description": "Exception details."}
|
| ],
|
| "description": "Evaluates expression on a given call frame."
|
| },
|
|
|