aboutsummaryrefslogtreecommitdiff
path: root/lib/checks/check.mli
diff options
context:
space:
mode:
authorChimrod <>2025-07-19 11:18:24 +0200
committerChimrod <>2025-08-01 14:12:14 +0200
commit3046fb0d0c1ceac2c6a6ca9456e9e05671e0cef9 (patch)
tree8ba2700e541a6753499ceac54ced4f1d02a3b625 /lib/checks/check.mli
parent406b7b79cd375b071f92ddee9cee14a98dc91281 (diff)
Added dependencies system between the modules in the checksHEADmaster
Diffstat (limited to 'lib/checks/check.mli')
-rw-r--r--lib/checks/check.mli8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/checks/check.mli b/lib/checks/check.mli
index ebed0df..34d953f 100644
--- a/lib/checks/check.mli
+++ b/lib/checks/check.mli
@@ -13,19 +13,19 @@
end)
]} *)
-val get_module : Qsp_syntax.Catalog.ex -> (module Qsp_syntax.S.Analyzer)
-
type result
val get : 'a Type.Id.t -> result -> 'a option
(** The method [get] can be used to get the internal value for one of the
checker used. *)
+val set : 'a Type.Id.t -> result -> 'a -> result option
+
module Make (A : sig
- val t : Qsp_syntax.Catalog.ex array
+ val t : Qsp_syntax.Identifier.t array
end) : sig
include
- Qsp_syntax.S.Analyzer
+ Qsp_syntax.Analyzer.T
with type Location.t = result array
and type context = result array
end