| Index: src/inspector/debugger_script_externs.js
|
| diff --git a/src/inspector/debugger_script_externs.js b/src/inspector/debugger_script_externs.js
|
| index add69fa965fef12914b2fa9d6e6aa2822c5eea19..e4d8141a975c9d2fb1ac4faca3235f6af5f5ad35 100644
|
| --- a/src/inspector/debugger_script_externs.js
|
| +++ b/src/inspector/debugger_script_externs.js
|
| @@ -31,7 +31,7 @@ var JavaScriptCallFrameDetails;
|
| /** @typedef {{
|
| contextId: function():number,
|
| thisObject: !Object,
|
| - evaluate: function(string):*,
|
| + evaluate: function(string, boolean):*,
|
| restart: function():undefined,
|
| setVariableValue: function(number, string, *):undefined,
|
| isAtReturn: boolean,
|
| @@ -351,8 +351,9 @@ FrameMirror.prototype.script = function() {}
|
|
|
| /**
|
| * @param {string} source
|
| + * @param {boolean} throwOnSideEffect
|
| */
|
| -FrameMirror.prototype.evaluate = function(source) {}
|
| +FrameMirror.prototype.evaluate = function(source, throwOnSideEffect) {}
|
|
|
| FrameMirror.prototype.restart = function() {}
|
|
|
|
|