diff options
author | Chimrod <> | 2023-11-04 11:54:08 +0100 |
---|---|---|
committer | Chimrod <> | 2023-11-04 11:54:08 +0100 |
commit | 673da2554d3e667e0a62d5c7bbf30999f1295dc1 (patch) | |
tree | 6fe7b79a4d70d31c6c405f6a943196a1b857dfdd /lib/syntax/check.ml | |
parent | 0f24d6d6c6a61c9a3f090649003df7daabff4d65 (diff) |
List all the available tests on command line
Diffstat (limited to 'lib/syntax/check.ml')
-rw-r--r-- | lib/syntax/check.ml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/syntax/check.ml b/lib/syntax/check.ml index a7095fc..59eaaf1 100644 --- a/lib/syntax/check.ml +++ b/lib/syntax/check.ml @@ -83,6 +83,9 @@ let build : in (location_witness, t) +let get_module : t -> (module S.Analyzer) = + fun (E { module_; _ }) -> (module_ :> (module S.Analyzer)) + module type App = sig val t : t array end @@ -105,6 +108,9 @@ module Helper = struct end module Make (A : App) = struct + let identifier = "main_checker" + let description = "Internal module" + (* Global variable for the whole module *) let len = Array.length A.t |