diff options
author | Chimrod <> | 2023-10-14 15:32:13 +0200 |
---|---|---|
committer | Chimrod <> | 2023-10-18 09:49:47 +0200 |
commit | f85abcb996b8d189a646e6aeea8aa4ce068f7570 (patch) | |
tree | 658bb3448777435b569a5b0871468317611bf47c /lib/qparser/analyzer.mli | |
parent | f135a5fcb6c9827d07025a143b190cbbf8eddc15 (diff) |
Used the type S.repr in Syntax/Location.t
Diffstat (limited to 'lib/qparser/analyzer.mli')
-rw-r--r-- | lib/qparser/analyzer.mli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/qparser/analyzer.mli b/lib/qparser/analyzer.mli index 30b6625..e6dcc14 100644 --- a/lib/qparser/analyzer.mli +++ b/lib/qparser/analyzer.mli @@ -1,7 +1,7 @@ val parse : - (module Qsp_syntax.S.Analyzer with type Location.repr = 'a) -> + (module Qsp_syntax.S.Analyzer with type Location.t = 'a) -> Lexbuf.t -> - ('a, Qsp_syntax.Report.t) Result.t + ('a * Qsp_syntax.Report.t list, Qsp_syntax.Report.t) Result.t (** Read the source and build a analyzis over it. This method make the link between the source file and how to read it |