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