{% extends "cone_base.html" %} {% block title %}Implementation info{% endblock %} {% block content %}

Implementations


{% for impl in data.impl_data %} {% endfor %}
File Line Type Phase Tags Refs
{{ impl.ref }} {{ impl.lineno }} {{ impl.IMPL_TYPE_ID }} {{ impl.invocation_phase() }} {%- for name, value in impl.get_tags().iteritems() -%} {{name}} = {{value}}
{%- endfor -%}
{%- set refs = impl.get_refs() -%} {%- if refs == None -%} None {%- else -%} {%- for ref in refs -%} {{ref}}
{%- endfor -%} {%- endif -%}
{% endblock %}