(Context ctx, Symbol name, int numFields, Symbol[] fieldNames,
Sort[] fieldSorts)
| 57 | } |
| 58 | |
| 59 | TupleSort(Context ctx, Symbol name, int numFields, Symbol[] fieldNames, |
| 60 | Sort[] fieldSorts) |
| 61 | { |
| 62 | super(ctx, Native.mkTupleSort(ctx.nCtx(), name.getNativeObject(), |
| 63 | numFields, Symbol.arrayToNative(fieldNames), |
| 64 | AST.arrayToNative(fieldSorts), new Native.LongPtr(), |
| 65 | new long[numFields])); |
| 66 | } |
| 67 | }; |
nothing calls this directly
no test coverage detected