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