Index: src/mirror-debugger.js |
diff --git a/src/mirror-debugger.js b/src/mirror-debugger.js |
index 4277136b609265b8f64515c6842a778fb139fc56..212bb0b9cac370b734011add6baa5a95fef593b5 100644 |
--- a/src/mirror-debugger.js |
+++ b/src/mirror-debugger.js |
@@ -637,8 +637,9 @@ ObjectMirror.prototype.propertyNames = function(kind, limit) { |
// Find all the named properties. |
if (kind & PropertyKind.Named) { |
- // Get the local property names. |
- propertyNames = %GetLocalPropertyNames(this.value_, true); |
+ // Get all the local property names. |
+ propertyNames = |
+ %GetLocalPropertyNames(this.value_, PROPERTY_ATTRIBUTES_NONE); |
total += propertyNames.length; |
// Get names for named interceptor properties if any. |