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 4841b8bd2552e87c53e75ba3fa6bc9ab2cdc627d..46ee7f9003f34543898cfdbabe007cc9a61d0dab 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
@@ -712,7 +712,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)); |
dgozman
2016/02/22 17:24:56
Can we avoid global singleton?
sergeyv
2016/02/22 21:42:54
Done. Made static function
|
if (this._clearValueWidgetsTimer) { |
clearTimeout(this._clearValueWidgetsTimer); |