blob: e7efdb0813a04e0b33551d6d3944742871ae1bdd (
plain)
1
2
3
4
5
6
7
8
9
|
val parse :
(module Qsp_syntax.S.Analyzer with type Location.repr = 'a) ->
(module Encoding.S) ->
Sedlexing.lexbuf ->
('a, 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
(encoding…) and the AST we want to build. *)
|