Translates the AST vector into an ArrayExpr[]
()
| 166 | * Translates the AST vector into an ArrayExpr[] |
| 167 | * */ |
| 168 | public ArrayExpr<?, ?>[] ToArrayExprArray() |
| 169 | { |
| 170 | int n = size(); |
| 171 | ArrayExpr<?, ?>[] res = new ArrayExpr[n]; |
| 172 | for (int i = 0; i < n; i++) |
| 173 | res[i] = (ArrayExpr<?, ?>)Expr.create(getContext(), get(i).getNativeObject()); |
| 174 | return res; |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Translates the AST vector into an DatatypeExpr[] |
nothing calls this directly
no test coverage detected