AccuIdent returns an accumulator identifier for use with comprehension results.
()
| 493 | |
| 494 | // AccuIdent returns an accumulator identifier for use with comprehension results. |
| 495 | func (ah *adaptingHelper) AccuIdent() *exprpb.Expr { |
| 496 | return mustAdaptToProto(ah.modernHelper.NewAccuIdent()) |
| 497 | } |
| 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 { |
nothing calls this directly
no test coverage detected