Select create a field traversal Expr value.
(operand *exprpb.Expr, field string)
| 515 | |
| 516 | // Select create a field traversal Expr value. |
| 517 | func (ah *adaptingHelper) Select(operand *exprpb.Expr, field string) *exprpb.Expr { |
| 518 | op := mustAdaptToExpr(operand) |
| 519 | return mustAdaptToProto(ah.modernHelper.NewSelect(op, field)) |
| 520 | } |
| 521 | |
| 522 | // OffsetLocation returns the Location of the expression identifier. |
| 523 | func (ah *adaptingHelper) OffsetLocation(exprID int64) common.Location { |
nothing calls this directly
no test coverage detected