We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 172afd4 commit b1eb8c0Copy full SHA for b1eb8c0
visualvm/libs.profiler/profiler.oql/src/org/graalvm/visualvm/lib/profiler/oql/engine/api/impl/hat.js
@@ -1296,7 +1296,9 @@ function wrapIterator(itr, wrap) {
1296
};
1297
} else if (itr instanceof java.util.Enumeration) {
1298
return itr; // already wrapped
1299
- } else if (itr instanceof org.graalvm.visualvm.lib.jfluid.heap.ArrayDump) {
+ } else if (itr instanceof ObjectArrayInstance) {
1300
+ return wrapJavaObject(itr);
1301
+ } else if (itr instanceof PrimitiveArrayInstance) {
1302
return wrapJavaObject(itr);
1303
} else if (itr.constructor === JavaClassProto && !(itr instanceof JSAdapter)) {
1304
var arr = new Array();
0 commit comments