Tagged Questions
2
votes
1answer
304 views
Why is usage of javascript within visualvm (jhat?) oql sometimes confusing?
I am interested in knowing why visualvm OQL has a problem with the following statement:
select filter(heap.objects("java.util.HashMap"), isTrue(it));
function isTrue(object) {
return true;
}
...