| Index: third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js b/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js
|
| index 5eebeca4b06e1b2219bf21fcd9cd75dc34c48031..25d07542792e920dcef9f86c509bd800928c5e88 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js
|
| @@ -403,6 +403,8 @@ FunctionMirror.prototype.script = function() {}
|
| /** @return {!SourceLocation|undefined} */
|
| FunctionMirror.prototype.sourceLocation = function() {}
|
|
|
| +/** @return {!ContextMirror|undefined} */
|
| +FunctionMirror.prototype.context = function() {}
|
|
|
| /**
|
| * @constructor
|
| @@ -543,3 +545,12 @@ ScopeMirror.prototype.details = function() {}
|
| * @param {*} newValue
|
| */
|
| ScopeMirror.prototype.setVariableValue = function(name, newValue) {}
|
| +
|
| +/**
|
| + * @interface
|
| + * @extends {Mirror}
|
| + */
|
| +function ContextMirror() {}
|
| +
|
| +/** @return {string|undefined} */
|
| +ContextMirror.prototype.data = function() {}
|
|
|