(exprID int64, function string, args ...ast.Expr)
| 943 | } |
| 944 | |
| 945 | func (p *parser) globalCallOrMacro(exprID int64, function string, args ...ast.Expr) ast.Expr { |
| 946 | if expr, found := p.expandMacro(exprID, function, nil, args...); found { |
| 947 | return expr |
| 948 | } |
| 949 | return p.helper.newGlobalCall(exprID, function, args...) |
| 950 | } |
| 951 | |
| 952 | func (p *parser) receiverCallOrMacro(exprID int64, function string, target ast.Expr, args ...ast.Expr) ast.Expr { |
| 953 | if expr, found := p.expandMacro(exprID, function, target, args...); found { |
no test coverage detected