aboutsummaryrefslogtreecommitdiff
path: root/plugins/subtac/subtac_errors.mli
diff options
context:
space:
mode:
authormsozeau2012-03-14 09:53:06 +0000
committermsozeau2012-03-14 09:53:06 +0000
commit8ff2de8c01b3ba3563517627b1f5c9eb2c4bcb77 (patch)
tree4f7e99ba36af1cf03d8c3315c371293ae46fe77c /plugins/subtac/subtac_errors.mli
parent4d7b12f27a7cc520a319a9d4b652137c0a0cbb60 (diff)
Final part of moving Program code inside the main code. Adapted add_definition/fixpoint and parsing of the "Program" prefix.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15036 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'plugins/subtac/subtac_errors.mli')
-rw-r--r--plugins/subtac/subtac_errors.mli15
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/subtac/subtac_errors.mli b/plugins/subtac/subtac_errors.mli
deleted file mode 100644
index c65203075a..0000000000
--- a/plugins/subtac/subtac_errors.mli
+++ /dev/null
@@ -1,15 +0,0 @@
-type term_pp = Pp.std_ppcmds
-type subtyping_error =
- UncoercibleInferType of Pp.loc * term_pp * term_pp
- | UncoercibleInferTerm of Pp.loc * term_pp * term_pp * term_pp * term_pp
- | UncoercibleRewrite of term_pp * term_pp
-type typing_error =
- NonFunctionalApp of Pp.loc * term_pp * term_pp * term_pp
- | NonConvertible of Pp.loc * term_pp * term_pp
- | NonSigma of Pp.loc * term_pp
- | IllSorted of Pp.loc * term_pp
-exception Subtyping_error of subtyping_error
-exception Typing_error of typing_error
-exception Debug_msg of string
-val typing_error : typing_error -> 'a
-val subtyping_error : subtyping_error -> 'a