(long obj)
| 249 | } |
| 250 | |
| 251 | @Override |
| 252 | void checkNativeObject(long obj) { |
| 253 | if (Native.getAstKind(getContext().nCtx(), obj) != Z3_ast_kind.Z3_QUANTIFIER_AST |
| 254 | .toInt()) { |
| 255 | throw new Z3Exception("Underlying object is not a quantifier"); |
| 256 | } |
| 257 | super.checkNativeObject(obj); |
| 258 | } |
| 259 | } |
nothing calls this directly
no test coverage detected