aboutsummaryrefslogtreecommitdiffhomepage
path: root/interp/topconstr.ml
diff options
context:
space:
mode:
Diffstat (limited to 'interp/topconstr.ml')
-rw-r--r--interp/topconstr.ml7
1 files changed, 6 insertions, 1 deletions
diff --git a/interp/topconstr.ml b/interp/topconstr.ml
index f8c0aeb87..81b4e8e94 100644
--- a/interp/topconstr.ml
+++ b/interp/topconstr.ml
@@ -1218,7 +1218,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 *)