(long obj)
| 105 | } |
| 106 | |
| 107 | @Override |
| 108 | void checkNativeObject(long obj) |
| 109 | { |
| 110 | if (Native.getAstKind(getContext().nCtx(), obj) != Z3_ast_kind.Z3_SORT_AST |
| 111 | .toInt()) |
| 112 | throw new Z3Exception("Underlying object is not a sort"); |
| 113 | super.checkNativeObject(obj); |
| 114 | } |
| 115 | |
| 116 | static Sort create(Context ctx, long obj) |
| 117 | { |
nothing calls this directly
no test coverage detected