Module Values.SourceFileSpecifierSource

Information about a source file that is part of changes made in a commit.

Sourcetype nonrec t = {
  1. filePath : Path.t;
    (*

    The full path to the file, including the name of the file.

    *)
  2. isMove : IsMove.t option;
    (*

    Whether to remove the source file from the parent commit.

    *)
}
Sourceval context_ : string
Sourceval make : ?isMove:??? -> filePath:Path.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsMove.t | `String of Path.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t