aboutsummaryrefslogtreecommitdiffhomepage
path: root/interp/topconstr.mli
diff options
context:
space:
mode:
Diffstat (limited to 'interp/topconstr.mli')
-rw-r--r--interp/topconstr.mli7
1 files changed, 6 insertions, 1 deletions
diff --git a/interp/topconstr.mli b/interp/topconstr.mli
index 405db2d17..b7bac17bd 100644
--- a/interp/topconstr.mli
+++ b/interp/topconstr.mli
@@ -264,7 +264,12 @@ type module_ast =
| CMapply of module_ast * module_ast
| CMwith of module_ast * with_declaration_ast
-type module_ast_inl = module_ast * bool (** honor the inline annotations or not *)
+(* Which inline annotations should we honor, either None or the ones
+ whose level is less or equal to the given integer *)
+
+type inline = int option
+
+type module_ast_inl = module_ast * inline
type 'a module_signature =
| Enforce of 'a (** ... : T *)