Closed thso closed 6 years ago
When a template function call is missing required parameters
{template .foo} {@param a: int} {@param b: text} {/template} {template .other} {let $a: 42 /} {call .foo<caret>} {/call} {/template}
a quick fix should add them
{template .other} {let $a: 42 /} {call .foo} {param a: $a /} {param b kind="text"} {/param} {/call} {/template}
Notes:
blocked by #91
Not doing this.
When a template function call is missing required parameters
a quick fix should add them
Notes: