package dolmen

  1. Overview
  2. Docs

Parameters

module Ty : sig ... end
module Lex : Dolmen_intf.Lex.S with type token := Ty.token
module Parse : Dolmen_intf.Parse.S with type token := Ty.token and type statement := Ty.statement

Signature

include module type of struct include Ty end
type token = Ty.token
type statement = Ty.statement
val env : string list
module Lexer = Lex
module Parser = Parse
val find_env : string -> string list -> string option
val find : ?dir:string -> string -> string option
val parse_file : string -> Ty.statement list
val parse_input : [ `File of string | `Stdin ] -> (unit -> Ty.statement option) * (unit -> unit)