mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
22 lines
488 B
Smarty
22 lines
488 B
Smarty
# Analyses
|
|
|
|
{% import 'common.tpl' as common %}
|
|
|
|
{% for analysis in data.analyses %}
|
|
|
|
## <a id="/analyses/{{analysis.name}}"></a>{{analysis.name}}
|
|
|
|
**Description**: {{analysis.doc}}
|
|
|
|
{{ common.shortlist('Steps using this analysis:', analysis.steps) }}
|
|
|
|
**Arguments**:
|
|
{% for argument in analysis.arguments %}
|
|
- **{{argument.name}}**. A container containing the following kinds:
|
|
{% for kind in argument.acceptable_kinds %}
|
|
- {{kind | link}}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|