aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/constant.mli
diff options
context:
space:
mode:
authorGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>1999-09-19 14:17:35 +0000
committerGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>1999-09-19 14:17:35 +0000
commit76e3b2928b766a76ee7e29dd3f6867cd48f95a52 (patch)
tree5a5a73ee8770cba524b8c24892f709a308e9ab3b /kernel/constant.mli
parent5393ee683be9e19ab25888925f561ea4f4b1dddb (diff)
- un effort sur la doc (ocamlweb)
- module Nametab - module Impargs - correction bug : Parameter id : t => vérification que t est bien un type git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@76 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/constant.mli')
-rw-r--r--kernel/constant.mli12
1 files changed, 7 insertions, 5 deletions
diff --git a/kernel/constant.mli b/kernel/constant.mli
index d8aeb7670..890e1f425 100644
--- a/kernel/constant.mli
+++ b/kernel/constant.mli
@@ -7,7 +7,7 @@ open Term
open Sign
(*i*)
-(* Constants. *)
+(* Constants (internal representation). *)
type discharge_recipe
@@ -15,10 +15,6 @@ type recipe =
| Cooked of constr
| Recipe of discharge_recipe
-type constant_entry = {
- const_entry_body : constr;
- const_entry_type : constr option }
-
type constant_body = {
const_kind : path_kind;
const_body : recipe ref option;
@@ -30,3 +26,9 @@ val is_defined : constant_body -> bool
val is_opaque : constant_body -> bool
+(*s Constant declaration. *)
+
+type constant_entry= {
+ const_entry_body : constr;
+ const_entry_type : constr option }
+