package comby

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type substitution_request = {
  1. rewrite_template : string;
  2. environment : Match.Environment.t;
  3. id : int;
}
val substitution_request_to_yojson : substitution_request -> Yojson.Safe.t
type match_request = {
  1. source : string;
  2. match_template : string;
  3. rule : string option;
  4. language : string;
  5. id : int;
}
val match_request_to_yojson : match_request -> Yojson.Safe.t
type rewrite_request = {
  1. source : string;
  2. match_template : string;
  3. rewrite_template : string;
  4. rule : string option;
  5. language : string;
  6. substitution_kind : string;
  7. id : int;
}
val rewrite_request_to_yojson : rewrite_request -> Yojson.Safe.t