Create a datatype constructor. @param name constructor name @param recognizer name of recognizer function. @param fieldNames names of the constructor fields. @param sorts field sorts, 0 if the field sort refers to a recursive sort. @param sortRefs reference to datatype sort that is an argument to th
(Symbol name, Symbol recognizer,
Symbol[] fieldNames, Sort[] sorts, int[] sortRefs)
| 353 | * declared. |
| 354 | **/ |
| 355 | public final <R> Constructor<R> mkConstructor(Symbol name, Symbol recognizer, |
| 356 | Symbol[] fieldNames, Sort[] sorts, int[] sortRefs) |
| 357 | |
| 358 | { |
| 359 | return of(this, name, recognizer, fieldNames, sorts, sortRefs); |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Create a datatype constructor. |
no test coverage detected