aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/check.mli
diff options
context:
space:
mode:
Diffstat (limited to 'checker/check.mli')
-rw-r--r--checker/check.mli10
1 files changed, 7 insertions, 3 deletions
diff --git a/checker/check.mli b/checker/check.mli
index ef87e3efa..28ae385b5 100644
--- a/checker/check.mli
+++ b/checker/check.mli
@@ -14,6 +14,10 @@ type section_path = {
basename : string;
}
+type object_file =
+| PhysicalFile of physical_path
+| LogicalFile of section_path
+
type logical_path = DirPath.t
val default_root_prefix : DirPath.t
@@ -21,6 +25,6 @@ val default_root_prefix : DirPath.t
val add_load_path : physical_path * logical_path -> unit
val recheck_library :
- norec:section_path list ->
- admit:section_path list ->
- check:section_path list -> unit
+ norec:object_file list ->
+ admit:object_file list ->
+ check:object_file list -> unit