(long obj)
| 360 | } |
| 361 | |
| 362 | void checkNativeObject(long obj) |
| 363 | { |
| 364 | if (Native.getAstKind(getContext().nCtx(), obj) != Z3_ast_kind.Z3_FUNC_DECL_AST |
| 365 | .toInt()) |
| 366 | throw new Z3Exception( |
| 367 | "Underlying object is not a function declaration"); |
| 368 | super.checkNativeObject(obj); |
| 369 | } |
| 370 | |
| 371 | /** |
| 372 | * Create expression that applies function to arguments. |
nothing calls this directly
no test coverage detected