aboutsummaryrefslogtreecommitdiff
path: root/kernel/constant.mli
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/constant.mli')
-rw-r--r--kernel/constant.mli6
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/constant.mli b/kernel/constant.mli
index 7f52f94d46..60607cef25 100644
--- a/kernel/constant.mli
+++ b/kernel/constant.mli
@@ -16,7 +16,13 @@ type constant_body = {
const_body : recipe ref option;
const_type : typed_type;
const_hyps : context;
+ mutable const_opaque : bool;
mutable const_eval : ((int * constr) list * int * bool) option option;
}
type constant_entry = section_path * constant_body
+
+val is_defined : constant_body -> bool
+
+val is_opaque : constant_body -> bool
+