Chromium Code Reviews| Index: Source/devtools/protocol.json |
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
| index a548f63d462d76661a9095bc4683baec583a9655..b95bae21a008128a90b23a2935f1071b05c6ea84 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."} |
|
aandrey
2014/07/17 10:10:06
hidden?
kozyatinskiy1
2014/07/17 12:27:23
Done.
|
| ], |
| "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, "description": "Exception details."} |
| ], |
| "description": "Evaluates expression on a given call frame." |
| }, |