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 e1d56b9 commit d8e2be4Copy full SHA for d8e2be4
visualvm/libs.profiler/profiler.oql/src/org/graalvm/visualvm/lib/profiler/oql/engine/api/impl/hat.js
@@ -167,9 +167,9 @@ var emptyEnumeration = new java.util.Enumeration() {
167
function wrapRoot(root) {
168
if (root) {
169
return {
170
- id: root.instance.getInstanceId(),
+ get id() { return i = root.instance; return (i) ? i.getInstanceId() : 0; },
171
description: "Reference " + root.kind,
172
- referrer: wrapJavaValue(root.instance),
+ get referrer() { return wrapJavaValue(root.instance); },
173
type: root.kind,
174
wrapped: root
175
};
0 commit comments