GlobalCall creates a function call Expr value for a global (free) function.
(function string, args ...*exprpb.Expr)
| 498 | |
| 499 | // GlobalCall creates a function call Expr value for a global (free) function. |
| 500 | func (ah *adaptingHelper) GlobalCall(function string, args ...*exprpb.Expr) *exprpb.Expr { |
| 501 | return mustAdaptToProto(ah.modernHelper.NewCall(function, mustAdaptToExprs(args)...)) |
| 502 | } |
| 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 { |
nothing calls this directly
no test coverage detected