Object properties with values of Symbol type should not be expandable.

BUG=376194

Review URL: https://codereview.chromium.org/337353002

git-svn-id: svn://svn.chromium.org/blink/trunk@176326 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 41cd5645
...@@ -222,7 +222,7 @@ WebInspector.RemoteObjectImpl = function(target, objectId, type, subtype, value, ...@@ -222,7 +222,7 @@ WebInspector.RemoteObjectImpl = function(target, objectId, type, subtype, value,
// handle // handle
this._objectId = objectId; this._objectId = objectId;
this._description = description; this._description = description;
this._hasChildren = true; this._hasChildren = (type !== "symbol");
this._preview = preview; this._preview = preview;
} else { } else {
// Primitive or null object. // Primitive or null object.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment