analyzer.mli 320 B

12345678
  1. val parse :
  2. (module Qsp_syntax.S.Analyzer with type Location.t = 'a) ->
  3. Lexbuf.t ->
  4. ('a * Qsp_syntax.Report.t list, Qsp_syntax.Report.t) Result.t
  5. (** Read the source and build a analyzis over it.
  6. This method make the link between the source file and how to read it
  7. (encoding…) and the AST we want to build. *)