{{ log.debug() }}
{{ obj.full_name }}
{% if obj.superclass %}
{{ obj.superclass |reference }}
{% endif %}
{% endfilter %}
{% endif %}
{{ other |reference }}
{% endfor %}
{% endif %}
{% endfor %}
{% if obj.constants %}
{% if obj.kind == "enum" %}
{% filter heading(heading_level, id=obj.abs_id ~ "-members") %}Members{% endfilter %}
{% else %}
{% filter heading(heading_level, id=obj.abs_id ~ "-constants") %}Constants{% endfilter %}
{% endif %}
{% with heading_level = heading_level + 1 %}
{% for obj in obj.constants %}
{% include "constant.html" with context %}
{% endfor %}
{% endwith %}
{% endif %}
{% for title, sub in [
("Constructors", obj.constructors),
("Class methods", obj.class_methods),
("Methods", obj.instance_methods),
("Macros", obj.macros),
] %}
{% if sub %}
{% filter heading(heading_level, id=obj.abs_id ~ "-" ~ title.lower().replace(" ", "-")) %}{{ title }}{% endfilter %}
{% with heading_level = heading_level + 1 %}
{% for obj in sub %}
{% include "method.html" with context %}
{% endfor %}
{% endwith %}
{% endif %}
{% endfor %}