(expr *exprpb.Expr)
| 499 | } |
| 500 | |
| 501 | func (con *converter) visitCallIndex(expr *exprpb.Expr) error { |
| 502 | if isMapType(con.getType(expr.GetCallExpr().GetArgs()[0])) { |
| 503 | return con.visitCallMapIndex(expr) |
| 504 | } |
| 505 | return con.visitCallListIndex(expr) |
| 506 | } |
| 507 | |
| 508 | func (con *converter) visitCallMapIndex(expr *exprpb.Expr) error { |
| 509 | c := expr.GetCallExpr() |
no test coverage detected