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 444f20361c223334de5cce988cd31602f923e93f..48290989727b572127970b6d8b42dc8cefcf6951 100644 |
--- a/Source/devtools/front_end/components/ObjectPropertiesSection.js |
+++ b/Source/devtools/front_end/components/ObjectPropertiesSection.js |
@@ -243,7 +243,7 @@ WebInspector.ObjectPropertyTreeElement.prototype = { |
this.listItemElement.removeChildren(); |
- this.hasChildren = this.property.value.hasChildren && !this.property.wasThrown; |
+ this.hasChildren = this.property.value.hasChildren && !this.property.wasThrown && !(this.property.value.type === "symbol"); |
aandrey
2014/06/17 10:36:33
this.property.value.hasChildren should be false fo
|
} else { |
if (this.property.getter) { |
this.valueElement = WebInspector.ObjectPropertyTreeElement.createRemoteObjectAccessorPropertySpan(this.property.parentObject, [this.property.name], this._onInvokeGetterClick.bind(this)); |