Translates the AST vector into an DatatypeExpr[]
()
| 178 | * Translates the AST vector into an DatatypeExpr[] |
| 179 | * */ |
| 180 | public DatatypeExpr<?>[] ToDatatypeExprArray() |
| 181 | { |
| 182 | int n = size(); |
| 183 | DatatypeExpr<?>[] res = new DatatypeExpr[n]; |
| 184 | for (int i = 0; i < n; i++) |
| 185 | res[i] = (DatatypeExpr<?>)Expr.create(getContext(), get(i).getNativeObject()); |
| 186 | return res; |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Translates the AST vector into an FPExpr[] |
nothing calls this directly
no test coverage detected