(long obj)
| 47 | } |
| 48 | |
| 49 | @Override |
| 50 | void checkNativeObject(long obj) |
| 51 | { |
| 52 | if (Native.getSymbolKind(getContext().nCtx(), obj) != Z3_symbol_kind.Z3_INT_SYMBOL |
| 53 | .toInt()) |
| 54 | throw new Z3Exception("Symbol is not of integer kind"); |
| 55 | super.checkNativeObject(obj); |
| 56 | } |
| 57 | } |
nothing calls this directly
no test coverage detected