Transformer.Makemodule Ty : sig ... endmodule Lex : Dolmen_intf.Lex.S with type token := Ty.tokenmodule Parse :
Dolmen_intf.Parse.S
with type token := Ty.token
and type statement := Ty.statementmodule Lexer = Lexmodule Parser = Parseval error_message :
Ty.token option ->
int ->
[> `Advanced of
string
* (Format.formatter ->
unit)
* (Format.formatter ->
unit)
* (Format.formatter ->
unit)
| `Regular of Format.formatter -> unit ]val parse_aux :
k_exn:(unit -> unit) ->
(Lexing.lexbuf -> unit) ->
(Lexing.lexbuf -> unit) ->
Lexing.lexbuf ->
((Lexing.lexbuf -> Ty.token) -> Lexing.lexbuf -> 'a) ->
unit ->
'aval parse_all :
[ `Contents of string * string | `File of string | `Stdin ] ->
Loc.file * Ty.statement list lazy_tval parse_input :
[ `Contents of string * string | `File of string | `Stdin ] ->
Loc.file * (unit -> Ty.statement option) * (unit -> unit)