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