| Index: third_party/WebKit/Source/devtools/front_end/sdk/Script.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/Script.js b/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
|
| index 10413cfa00d6716524ee482e4b7a5bf9df210df8..df1dbb3217aed7d9d6d07b533369a7eeab121e2a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
|
| @@ -65,7 +65,7 @@ SDK.Script = class {
|
| this.endLine = endLine;
|
| this.endColumn = endColumn;
|
|
|
| - this._executionContextId = executionContextId;
|
| + this.executionContextId = executionContextId;
|
| this.hash = hash;
|
| this._isContentScript = isContentScript;
|
| this._isLiveEdit = isLiveEdit;
|
| @@ -135,7 +135,7 @@ SDK.Script = class {
|
| * @return {?SDK.ExecutionContext}
|
| */
|
| executionContext() {
|
| - return this.debuggerModel.target().runtimeModel.executionContext(this._executionContextId);
|
| + return this.debuggerModel.target().runtimeModel.executionContext(this.executionContextId);
|
| }
|
|
|
| /**
|
|
|