Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Unified Diff: plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ArrayValue.java

Issue 14195023: Fix number property sorting and optimize hasProperty call in Debugger (Closed) Base URL: https://chromedevtools.googlecode.com/svn/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/StackFrame.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ArrayValue.java
diff --git a/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ArrayValue.java b/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ArrayValue.java
index ca1379274ee725db4a667ba15fd3247a81f3ed84..125dce9f3b8a3092550afd8817a3a23cd362e55a 100755
--- a/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ArrayValue.java
+++ b/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ArrayValue.java
@@ -70,7 +70,8 @@ public class ArrayValue extends Value implements IIndexedValue {
@Override
public boolean hasVariables() throws DebugException {
- return getElements().length > 0;
+ // Being optimistic. Too complicated to check accurately.
+ return true;
}
private static final Set<String> ARRAY_HIDDEN_PROPERTY_NAMES = Collections.singleton("length");
« no previous file with comments | « no previous file | plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/StackFrame.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698