aboutsummaryrefslogtreecommitdiff
path: root/interp/genarg.ml
diff options
context:
space:
mode:
Diffstat (limited to 'interp/genarg.ml')
-rw-r--r--interp/genarg.ml4
1 files changed, 4 insertions, 0 deletions
diff --git a/interp/genarg.ml b/interp/genarg.ml
index f9b5bee0a4..ea8302e91c 100644
--- a/interp/genarg.ml
+++ b/interp/genarg.ml
@@ -24,6 +24,7 @@ type argument_type =
| VarArgType
| RefArgType
(* Specific types *)
+ | GenArgType
| SortArgType
| ConstrArgType
| ConstrMayEvalArgType
@@ -48,6 +49,7 @@ let rec argument_type_eq arg1 arg2 = match arg1, arg2 with
| IdentArgType b1, IdentArgType b2 -> (b1 : bool) == b2
| VarArgType, VarArgType -> true
| RefArgType, RefArgType -> true
+| GenArgType, GenArgType -> true
| SortArgType, SortArgType -> true
| ConstrArgType, ConstrArgType -> true
| ConstrMayEvalArgType, ConstrMayEvalArgType -> true
@@ -118,6 +120,8 @@ let wit_ref = RefArgType
let wit_quant_hyp = QuantHypArgType
+let wit_genarg = GenArgType
+
let wit_sort = SortArgType
let wit_constr = ConstrArgType