Dolmen_loop.Response
module P : sig ... end
include Dolmen.Class.Response.S
with type statement := Dolmen.Std.Answer.t
and type file := Dolmen.Std.Loc.file
Raised when trying to find a language given a file extension.
The languages supported by the Response class.
val enum : (string * language) list
Enumeration of languages together with an appropriate name. Can be used for command-line arguments (for instance, with cmdliner).
val string_of_language : language -> string
String representation of the variant
val find : ?language:language -> ?dir:string -> string -> string option
Tries and find the given file, using the language specification.
val parse_all :
?language:language ->
[< `File of string
| `Stdin of language
| `Raw of string * language * string ] ->
language * Dolmen.Std.Loc.file * Dolmen.Std.Answer.t list Stdlib.Lazy.t
Full (but lazy) parsing of either a file (see parse_file
), stdin (with given language), or some arbitrary contents, of the form `Raw (filename, language, contents)
. Returns a triplet (lan, file, stmts)
, containing:
lan
detectedfile
value that stores the metadata about file locationsstmts
; forcing this list will run the actual parsing of the whole input given as argument, and may raise errors, if any arises during the parsing (such as lexical errors, etc..)val parse_input :
?language:language ->
[< `File of string
| `Stdin of language
| `Raw of string * language * string ] ->
language
* Dolmen.Std.Loc.file
* (unit ->
Dolmen.Std.Answer.t option)
* (unit ->
unit)
Incremental parsing of either a file (see parse_file
), stdin (with given language), or some arbitrary contents, of the form `Raw (filename, language, contents)
. Returns a triplet (lan, gen, cl)
, containing the language detexted lan
, a genratro function gen
for parsing the input, and a cleanup function cl
to call in order to cleanup the file descriptors.
module type S =
Dolmen_intf.Language.S
with type statement := Dolmen.Std.Answer.t
and type file := Dolmen.Std.Loc.file
The type of language modules.