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