| Index: Source/core/inspector/InjectedScriptExterns.js
|
| diff --git a/Source/core/inspector/InjectedScriptExterns.js b/Source/core/inspector/InjectedScriptExterns.js
|
| index a96a33090c0fdc6be17c9a4e1cce9966c85ecb0a..81ac85c3769be278a77478f8ce098d5ba98d710f 100644
|
| --- a/Source/core/inspector/InjectedScriptExterns.js
|
| +++ b/Source/core/inspector/InjectedScriptExterns.js
|
| @@ -87,7 +87,11 @@ InjectedScriptHostClass.prototype.getEventListeners = function(object) { }
|
| /**
|
| * @param {string} expression
|
| */
|
| -InjectedScriptHostClass.prototype.evaluate = function(expression) { }
|
| +InjectedScriptHostClass.prototype.eval = function(expression) { }
|
| +/**
|
| + * @param {string} expression
|
| + */
|
| +InjectedScriptHostClass.prototype.evaluateWithExceptionDetails = function(expression) { }
|
| /**
|
| * @param {*} fn
|
| */
|
| @@ -143,7 +147,10 @@ function JavaScriptCallFrame()
|
| JavaScriptCallFrame.prototype.scopeType = function(index) { }
|
|
|
| JavaScriptCallFrame.prototype.restart = function() { }
|
| -
|
| +/**
|
| + * @param {string} expression
|
| + */
|
| +JavaScriptCallFrame.prototype.evaluateWithExceptionDetails = function(expression) { }
|
| /**
|
| * @param {number} scopeNumber
|
| * @param {string} variableName
|
|
|