{% import 'components.html' as components %} {{ obj.type }} instance {{ obj.id }} - {{ dump_name }}

{{ obj.type }} instance {{ obj.id }} in Heap Dump: {{ dump_name }}

Back to overview

{% if current_from_id == obj.id %}

This object will be used as the starting point if you start a path search.

{% else %}
{% endif %} {% if current_to_id == obj.id %}

This object will be used as the ending point if you start a path search.

{% else %}
{% endif %}
Type:
{{ obj.type }}
ID:
{{ obj.id }}
Size:
{{ obj.size }} bytes
{% if obj.subtree_size is not none %}
Subtree Size:
{{ obj.subtree_size }} bytes
{% endif %} {% if obj.value is not none %}
Value:
{{ obj.value }}
{% endif %}
{% if obj.referrers %}

Referrers

{{ components.object_list(obj.referrers, dump_name) }} {% endif %} {% if obj.references %}

References

{{ components.object_list(obj.references, dump_name) }} {% endif %}