{# -*- engine: jinja -*- #} {% if function_list %}
List of functions {% for entry in function_list %} {% endfor %}
Function Line Call count
{{ entry["name"] }} {{ entry["line"] }} {%- if entry["excluded"] %} excluded {%- else %} {%- if entry["count"] == 0 %} not called {%- else %} called {{ entry["count"] }} time{% if entry["count"] > 1 %}s{% endif %} {%- endif -%} {%- endif -%}
{% endif -%}