| Index: third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| index f94d688c7b10832b586ae806eb29f617ef510b21..2290fec752dd86e8bb5c170cfec0cbb0403fd882 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| @@ -1038,7 +1038,6 @@ WebInspector.DebuggerModel.CallFrame.fromPayloadArray = function(debuggerModel,
|
| }
|
|
|
| WebInspector.DebuggerModel.CallFrame.prototype = {
|
| -
|
| /**
|
| * @return {!WebInspector.Script}
|
| */
|
| @@ -1206,6 +1205,14 @@ WebInspector.DebuggerModel.Scope = function(callFrame, ordinal)
|
|
|
| WebInspector.DebuggerModel.Scope.prototype = {
|
| /**
|
| + * @return {!WebInspector.DebuggerModel.CallFrame}
|
| + */
|
| + callFrame: function()
|
| + {
|
| + return this._callFrame;
|
| + },
|
| +
|
| + /**
|
| * @return {string}
|
| */
|
| type: function()
|
|
|