From 17daa1fc6d93e9b03adff21efdac5de506c78e34 Mon Sep 17 00:00:00 2001 From: Chimrod <> Date: Sun, 15 Sep 2024 16:50:30 +0200 Subject: Uses std library instead of implementing it --- lib/syntax/check.mli | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/syntax/check.mli') 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. *) -- cgit v1.2.3