aboutsummaryrefslogtreecommitdiff
path: root/lib/qparser/analyzer.ml
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/qparser/analyzer.ml
parent406b7b79cd375b071f92ddee9cee14a98dc91281 (diff)
Added dependencies system between the modules in the checksHEADmaster
Diffstat (limited to 'lib/qparser/analyzer.ml')
-rw-r--r--lib/qparser/analyzer.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/qparser/analyzer.ml b/lib/qparser/analyzer.ml
index b4eeba0..fc0ed6d 100644
--- a/lib/qparser/analyzer.ml
+++ b/lib/qparser/analyzer.ml
@@ -14,14 +14,14 @@ let get_lexer :
See [syntax/S] *)
let rec parse : type a context.
- (module Qsp_syntax.S.Analyzer
+ (module Qsp_syntax.Analyzer.T
with type Location.t = a
and type context = context) ->
lexer ->
Lexbuf.t ->
context ->
(a result, Qsp_syntax.Report.t) Result.t =
- fun (module S : Qsp_syntax.S.Analyzer
+ fun (module S : Qsp_syntax.Analyzer.T
with type Location.t = a
and type context = context) ->
let module Parser = Parser.Make (S) in