diff options
author | Chimrod <> | 2024-09-15 16:50:30 +0200 |
---|---|---|
committer | Chimrod <> | 2024-09-15 16:50:30 +0200 |
commit | 17daa1fc6d93e9b03adff21efdac5de506c78e34 (patch) | |
tree | 67ea34a15632856e5eb053d3789d847ca940485b /lib/syntax/check.mli | |
parent | 8b4eb01afa698dd1e512f7a83fb761bfb146fdf7 (diff) |
Uses std library instead of implementing it
Diffstat (limited to 'lib/syntax/check.mli')
-rw-r--r-- | lib/syntax/check.mli | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/syntax/check.mli b/lib/syntax/check.mli index 25075c8..7db719d 100644 --- a/lib/syntax/check.mli +++ b/lib/syntax/check.mli @@ -15,7 +15,7 @@ *) module Id : sig - type 'a typeid + type 'a t (** The type created on-the-fly. *) end @@ -30,9 +30,9 @@ val build : and type Instruction.t' = _ and type Location.t = 'a and type context = _) -> - 'a Id.typeid * t + 'a Id.t * t (** Build a new check from a module following S.Analyzer signature. - +ypeid Return the result type which hold the final result value, and checker itself. *) @@ -40,7 +40,7 @@ val get_module : t -> (module S.Analyzer) type result -val get : 'a Id.typeid -> result -> 'a option +val get : 'a Id.t -> result -> 'a option (** The method [get] can be used to get the internal value for one of the checker used. *) |