(exprs []*exprpb.Expr)
| 530 | } |
| 531 | |
| 532 | func mustAdaptToExprs(exprs []*exprpb.Expr) []ast.Expr { |
| 533 | adapted := make([]ast.Expr, len(exprs)) |
| 534 | for i, e := range exprs { |
| 535 | adapted[i] = mustAdaptToExpr(e) |
| 536 | } |
| 537 | return adapted |
| 538 | } |
| 539 | |
| 540 | func mustAdaptToExpr(e *exprpb.Expr) ast.Expr { |
| 541 | out, _ := adaptToExpr(e) |
no test coverage detected