2015-04-25 14:29:20 -07:00
|
|
|
{% macro paramList(params) -%}
|
|
|
|
{%- if params -%}
|
|
|
|
({%- for param in params -%}
|
|
|
|
{$ param | escape $}{% if not loop.last %}, {% endif %}
|
|
|
|
{%- endfor %})
|
|
|
|
{%- endif %}
|
2015-05-15 13:57:38 +01:00
|
|
|
{%- endmacro -%}
|
|
|
|
|
|
|
|
|
|
|
|
{% macro returnType(returnType) -%}
|
|
|
|
{%- if returnType %} : {$ returnType | escape $}{% endif -%}
|
|
|
|
{%- endmacro -%}
|