Translates the AST vector into an ArithExpr[]
()
| 154 | * Translates the AST vector into an ArithExpr[] |
| 155 | * */ |
| 156 | public ArithExpr<?>[] ToArithExprExprArray() |
| 157 | { |
| 158 | int n = size(); |
| 159 | ArithExpr<?>[] res = new ArithExpr[n]; |
| 160 | for (int i = 0; i < n; i++) |
| 161 | res[i] = (ArithExpr<?>)Expr.create(getContext(), get(i).getNativeObject()); |
| 162 | return res; |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Translates the AST vector into an ArrayExpr[] |
nothing calls this directly
no test coverage detected