NewGlobalCall implements the ExprHelper interface method.
(function string, args ...ast.Expr)
| 477 | |
| 478 | // NewGlobalCall implements the ExprHelper interface method. |
| 479 | func (e *exprHelper) NewCall(function string, args ...ast.Expr) ast.Expr { |
| 480 | return e.exprFactory.NewCall(e.nextMacroID(), function, args...) |
| 481 | } |
| 482 | |
| 483 | // NewMemberCall implements the ExprHelper interface method. |
| 484 | func (e *exprHelper) NewMemberCall(function string, target ast.Expr, args ...ast.Expr) ast.Expr { |
nothing calls this directly
no test coverage detected