summaryrefslogtreecommitdiff
path: root/deps/v8/src/mirror-debugger.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/mirror-debugger.js')
-rw-r--r--deps/v8/src/mirror-debugger.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/mirror-debugger.js b/deps/v8/src/mirror-debugger.js
index 7f1a05aed9..e1fd872f3b 100644
--- a/deps/v8/src/mirror-debugger.js
+++ b/deps/v8/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.