module type Definition = sig
.. end
: (string * string) option
: string option
: bool
val ident_start : (char, char, BatCharParser.position) BatParserCo.t
val ident_letter : (char, char, BatCharParser.position) BatParserCo.t
val op_start : (char, char, BatCharParser.position) BatParserCo.t
val op_letter : (char, char, BatCharParser.position) BatParserCo.t
val reserved_names : string list
val case_sensitive : bool
true
if the language is case-sensitive, false
otherwise.
If the language is not case-sensitive, every identifier is returned
as lower-case.