aboutsummaryrefslogtreecommitdiff
path: root/interp/modintern.mli
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2019-10-03 14:44:41 +0200
committerPierre-Marie Pédrot2019-10-03 14:44:41 +0200
commit3612ac1f639e361504cf3b2ded5609f5b643dfaa (patch)
treef96700b564efb9d7c55d95dc0aebbe5561882b51 /interp/modintern.mli
parent92a55bf800a34b5ec283ce0419cde98f3312c9b8 (diff)
parentcca4665778dd799e5802594761e13b8d53502824 (diff)
Merge PR #10727: [library] Move `Declaremods` to `vernac/`
Ack-by: SkySkimmer Reviewed-by: herbelin Reviewed-by: ppedrot
Diffstat (limited to 'interp/modintern.mli')
-rw-r--r--interp/modintern.mli4
1 files changed, 3 insertions, 1 deletions
diff --git a/interp/modintern.mli b/interp/modintern.mli
index 75ab38c64a..72695a680e 100644
--- a/interp/modintern.mli
+++ b/interp/modintern.mli
@@ -28,5 +28,7 @@ exception ModuleInternalizationError of module_internalization_error
kind is never ModAny, and it is equal to the input kind when this one
isn't ModAny. *)
+type module_kind = Module | ModType | ModAny
+
val interp_module_ast :
- env -> Declaremods.module_kind -> module_ast -> module_struct_entry * Declaremods.module_kind * Univ.ContextSet.t
+ env -> module_kind -> module_ast -> module_struct_entry * module_kind * Univ.ContextSet.t