| 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 70899b5cb9245d256cb50fb8ce17c0c9c417ee08..c1f6ce47f8c406f7b63c656cb63877ebcfb1497f 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| @@ -662,12 +662,14 @@ WebInspector.DebuggerModel.prototype = {
|
| */
|
| function buildDetails(response)
|
| {
|
| - if (!response || !response.internalProperties)
|
| + if (!response)
|
| return null;
|
| var location = null;
|
| - for (var prop of response.internalProperties) {
|
| - if (prop.name === "[[FunctionLocation]]")
|
| - location = prop.value;
|
| + if (response.internalProperties) {
|
| + for (var prop of response.internalProperties) {
|
| + if (prop.name === "[[FunctionLocation]]")
|
| + location = prop.value;
|
| + }
|
| }
|
| var functionName = null;
|
| if (response.properties) {
|
|
|