Create a new tuple sort.
(Symbol name, Symbol[] fieldNames,
Sort[] fieldSorts)
| 274 | * Create a new tuple sort. |
| 275 | **/ |
| 276 | public TupleSort mkTupleSort(Symbol name, Symbol[] fieldNames, |
| 277 | Sort[] fieldSorts) |
| 278 | { |
| 279 | checkContextMatch(name); |
| 280 | checkContextMatch(fieldNames); |
| 281 | checkContextMatch(fieldSorts); |
| 282 | return new TupleSort(this, name, fieldNames.length, fieldNames, |
| 283 | fieldSorts); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * Create a new enumeration sort. |
no test coverage detected