| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| index 05e319d4612d857e8039f69b5328be3132056c61..f05529ab874395074f47a73c10b558686995ebde 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| @@ -719,7 +719,7 @@ WebInspector.JavaScriptSourceFrame.prototype = {
|
| var localScope = callFrame.localScope();
|
| var functionLocation = callFrame.functionLocation();
|
| if (localScope && functionLocation)
|
| - localScope.object().getAllProperties(false, this._prepareScopeVariables.bind(this, callFrame));
|
| + WebInspector.SourceMapNamesResolver.resolveScopeInObject(localScope).getAllProperties(false, this._prepareScopeVariables.bind(this, callFrame));
|
|
|
| if (this._clearValueWidgetsTimer) {
|
| clearTimeout(this._clearValueWidgetsTimer);
|
|
|