ReceiverCall creates a function call Expr value for a receiver-style function.
(function string, target *exprpb.Expr, args ...*exprpb.Expr)
| 503 | |
| 504 | // ReceiverCall creates a function call Expr value for a receiver-style function. |
| 505 | func (ah *adaptingHelper) ReceiverCall(function string, target *exprpb.Expr, args ...*exprpb.Expr) *exprpb.Expr { |
| 506 | return mustAdaptToProto( |
| 507 | ah.modernHelper.NewMemberCall(function, mustAdaptToExpr(target), mustAdaptToExprs(args)...)) |
| 508 | } |
| 509 | |
| 510 | // PresenceTest creates a Select TestOnly Expr value for modelling has() semantics. |
| 511 | func (ah *adaptingHelper) PresenceTest(operand *exprpb.Expr, field string) *exprpb.Expr { |
nothing calls this directly
no test coverage detected