Ident creates an identifier Expr value.
(name string)
| 488 | |
| 489 | // Ident creates an identifier Expr value. |
| 490 | func (ah *adaptingHelper) Ident(name string) *exprpb.Expr { |
| 491 | return mustAdaptToProto(ah.modernHelper.NewIdent(name)) |
| 492 | } |
| 493 | |
| 494 | // AccuIdent returns an accumulator identifier for use with comprehension results. |
| 495 | func (ah *adaptingHelper) AccuIdent() *exprpb.Expr { |
nothing calls this directly
no test coverage detected