| Index: Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| diff --git a/Source/devtools/front_end/components/ObjectPropertiesSection.js b/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| index 8ca261bea05e9eca698bcd50497a5220d06b4981..bb685230b3d4a34807d7fa0b6a84938f4a295963 100644
|
| --- a/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| +++ b/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| @@ -573,7 +573,7 @@ WebInspector.ObjectPropertyTreeElement.populateWithProperties = function(treeEle
|
| if (!hasTargetFunction)
|
| treeElement.appendChild(new WebInspector.FunctionScopeMainTreeElement(value));
|
| }
|
| - if (value && value.type === "object" && (value.subtype === "map" || value.subtype === "set"))
|
| + if (value && value.type === "object" && (value.subtype === "map" || value.subtype === "set" || value.subtype === "iterator"))
|
| treeElement.appendChild(new WebInspector.CollectionEntriesMainTreeElement(value));
|
| if (internalProperties) {
|
| for (var i = 0; i < internalProperties.length; i++) {
|
|
|