aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/type_errors.ml
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-11-21 21:30:04 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-11-21 21:30:04 +0000
commiteb5afe3bf970bcd1e0c907774a49a352df3e91f3 (patch)
treedf76074fe7d7e42802f61fba5d7d3ceb9ceaed23 /kernel/type_errors.ml
parentc136d946314f44ab5da5f7ed229dc36b84effb66 (diff)
Amélioration messages d'erreur arité incorrecte (notamment record)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2236 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/type_errors.ml')
-rw-r--r--kernel/type_errors.ml7
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel/type_errors.ml b/kernel/type_errors.ml
index f1eb32b5b..fc98a2ef1 100644
--- a/kernel/type_errors.ml
+++ b/kernel/type_errors.ml
@@ -34,6 +34,11 @@ type guard_error =
| RecCallInCasePred of constr
| NotGuardedForm
+type arity_error =
+ | NonInformativeToInformative
+ | StrongEliminationOnNonSmallType
+ | WrongArity
+
type type_error =
| UnboundRel of int
| UnboundVar of variable
@@ -41,7 +46,7 @@ type type_error =
| BadAssumption of unsafe_judgment
| ReferenceVariables of constr
| ElimArity of inductive * types list * constr * unsafe_judgment
- * (constr * constr * string) option
+ * (constr * constr * arity_error) option
| CaseNotInductive of unsafe_judgment
| WrongCaseInfo of inductive * case_info
| NumberBranches of unsafe_judgment * int