diff options
author | Chimrod <> | 2024-02-04 10:37:04 +0100 |
---|---|---|
committer | Chimrod <> | 2024-02-08 14:12:45 +0100 |
commit | 6fd720c07e3e361932e01bfbdbe4637c8f610649 (patch) | |
tree | 26f983295d8674a08fc9367aaac820c0ace675bc /lib/qparser/analyzer.mli | |
parent | 35ef1827a216a1deb6d15f916ff197b0c75bc83e (diff) |
Added a general context for each test
Diffstat (limited to 'lib/qparser/analyzer.mli')
-rw-r--r-- | lib/qparser/analyzer.mli | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/qparser/analyzer.mli b/lib/qparser/analyzer.mli index e6dcc14..8033601 100644 --- a/lib/qparser/analyzer.mli +++ b/lib/qparser/analyzer.mli @@ -1,6 +1,9 @@ val parse : - (module Qsp_syntax.S.Analyzer with type Location.t = 'a) -> + (module Qsp_syntax.S.Analyzer + with type Location.t = 'a + and type context = 'context) -> Lexbuf.t -> + 'context -> ('a * Qsp_syntax.Report.t list, Qsp_syntax.Report.t) Result.t (** Read the source and build a analyzis over it. |