aboutsummaryrefslogtreecommitdiff
path: root/library/lib.mli
diff options
context:
space:
mode:
Diffstat (limited to 'library/lib.mli')
-rw-r--r--library/lib.mli7
1 files changed, 4 insertions, 3 deletions
diff --git a/library/lib.mli b/library/lib.mli
index 2fe172f9f6..36b49bbeb2 100644
--- a/library/lib.mli
+++ b/library/lib.mli
@@ -13,12 +13,13 @@ open Summary
type node =
| Leaf of obj
+ | Module of string
| OpenedSection of string * Summary.frozen
| FrozenState of Summary.frozen
-and library_segment = (section_path * node) list
+and library_entry = section_path * node
-type library_entry = section_path * node
+and library_segment = library_entry list
(*s Adding operations (which calls the [cache] method, and getting the
@@ -39,7 +40,7 @@ val make_path : identifier -> path_kind -> section_path
val cwd : unit -> string list
val is_section_p : section_path -> bool
-val open_module : string -> unit
+val start_module : string -> unit
val export_module : unit -> library_segment