comby.configuration
Configuration.Specification
comby
comby.interactive
comby.language
comby.match
comby.matchers
comby.parsers
comby.pipeline
comby.replacement
comby.rewriter
comby.server_types
comby.statistics
type t = {
match_template : string;
rule : Language.Rule.t option;
rewrite_template : string option;
}
val (|>>) : 'a Angstrom.t -> ('a -> 'b) -> 'b Angstrom.t
val alphanum : char Angstrom.t
val blank : char Angstrom.t
val identifier_parser : unit -> string Angstrom.t
val single_hole_parser : unit -> 'a option Angstrom.t
val everything_hole_parser : unit -> 'a option Angstrom.t
val expression_hole_parser : unit -> 'a option Angstrom.t
val non_space_hole_parser : unit -> 'a option Angstrom.t
val line_hole_parser : unit -> 'a option Angstrom.t
val blank_hole_parser : unit -> 'a option Angstrom.t
val any_char_except : reserved:Core.String.t list -> char Angstrom.t
val regex_body : unit -> string Angstrom.t
val regex_hole_parser : unit -> string option Angstrom.t
type extracted =
| Regex of string
| Constant of string
val extract : extracted list Angstrom.t
val escape : string -> string
val to_regex : t -> string
val create : ?rewrite_template:string -> ?rule:Language.Rule.t -> match_template:string -> unit -> t