(exprID int64, function string, args ...ast.Expr)
| 951 | } |
| 952 | |
| 953 | func (p *parser) globalCallOrMacro(exprID int64, function string, args ...ast.Expr) ast.Expr { |
| 954 | if expr, found := p.expandMacro(exprID, function, nil, args...); found { |
| 955 | return expr |
| 956 | } |
| 957 | return p.helper.newGlobalCall(exprID, function, args...) |
| 958 | } |
| 959 | |
| 960 | func (p *parser) receiverCallOrMacro(exprID int64, function string, target ast.Expr, args ...ast.Expr) ast.Expr { |
| 961 | if expr, found := p.expandMacro(exprID, function, target, args...); found { |
no test coverage detected