diff options
Diffstat (limited to 'lib/analyzer.mli')
-rw-r--r-- | lib/analyzer.mli | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/analyzer.mli b/lib/analyzer.mli index 02d7b47..43509ba 100644 --- a/lib/analyzer.mli +++ b/lib/analyzer.mli @@ -8,5 +8,10 @@ val format_error : Format.formatter -> error -> unit val parse : (module Qsp_syntax.S.Analyzer with type Location.repr = 'a) -> + (module Encoding.S) -> Sedlexing.lexbuf -> ('a, error) 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 +(encoding…) and the AST we want to build. *) |