(List<? extends Expr> exprs,
ThriftSerializationCtx serialCtx)
| 956 | } |
| 957 | |
| 958 | public static List<TExpr> treesToThrift(List<? extends Expr> exprs, |
| 959 | ThriftSerializationCtx serialCtx) { |
| 960 | List<TExpr> result = new ArrayList<>(); |
| 961 | for (Expr expr: exprs) { |
| 962 | result.add(expr.treeToThrift(serialCtx)); |
| 963 | } |
| 964 | return result; |
| 965 | } |
| 966 | |
| 967 | public static List<TExpr> treesToThrift(List<? extends Expr> exprs) { |
| 968 | return treesToThrift(exprs, new ThriftSerializationCtx()); |
no test coverage detected