aboutsummaryrefslogtreecommitdiff
path: root/API
diff options
context:
space:
mode:
authorMaxime Dénès2017-11-30 16:17:00 +0100
committerMaxime Dénès2017-11-30 16:17:00 +0100
commitc5f6ee866bef4ff924693302ea98fec2b4742b9b (patch)
tree66e728c5cf1fa3e59b1a48043e99a9995f7a1e2e /API
parent0bb126dae41b410fdf4f6531024c64cac20dac06 (diff)
parentc408e819ce39b27f0842c84b1b24c585ac5b6086 (diff)
Merge PR #6244: [lib] [api] Introduce record for `object_prefix`
Diffstat (limited to 'API')
-rw-r--r--API/API.mli6
1 files changed, 5 insertions, 1 deletions
diff --git a/API/API.mli b/API/API.mli
index 2eb7c4736e..b3efb3440f 100644
--- a/API/API.mli
+++ b/API/API.mli
@@ -2077,7 +2077,11 @@ sig
val basename : full_path -> Names.Id.t
type object_name = full_path * Names.KerName.t
- type object_prefix = Names.DirPath.t * (Names.ModPath.t * Names.DirPath.t)
+ type object_prefix = {
+ obj_dir : DirPath.t;
+ obj_mp : ModPath.t;
+ obj_sec : DirPath.t;
+ }
module Dirset : Set.S with type elt = DirPath.t
module Dirmap : Map.ExtS with type key = DirPath.t and module Set := Dirset