(context, as string)
| 710 | } |
| 711 | |
| 712 | func (t *Template) expression(context, as string) Expression { |
| 713 | expr, tk := t.parseExpression(context) |
| 714 | if expr == nil { |
| 715 | t.unexpected(tk, context, as) |
| 716 | } |
| 717 | t.backup() |
| 718 | return expr |
| 719 | } |
| 720 | |
| 721 | func (t *Template) pipeline(context string, baseExprMutate Expression) (pipe *PipeNode) { |
| 722 | pos := t.peekNonSpace().pos |
no test coverage detected