Translates the AST vector into an FPRMExpr[]
()
| 202 | * Translates the AST vector into an FPRMExpr[] |
| 203 | * */ |
| 204 | public FPRMExpr[] ToFPRMExprArray() |
| 205 | { |
| 206 | int n = size(); |
| 207 | FPRMExpr[] res = new FPRMExpr[n]; |
| 208 | for (int i = 0; i < n; i++) |
| 209 | res[i] = (FPRMExpr)Expr.create(getContext(), get(i).getNativeObject()); |
| 210 | return res; |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Translates the AST vector into an IntExpr[] |
nothing calls this directly
no test coverage detected