package ppx_expect
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
sha256=4d19571d7dcef21de581cc477177fd29722f2724a925c36a763fe98fa31f22e1
    
    
  md5=8f6fd9c0c3c93f9e5a25038f1c26b0aa
    
    
  doc/ppx_expect.matcher/Expect_test_matcher/Cst/index.html
Module Expect_test_matcher.Cst
Concrete syntax tree of expectations and actual outputs
These types represent the contents of an %expect node or of the actual output. We keep information about the original layout so that we can give an corrected expectation that follows the original formatting.
In the following names, blank means ' ' or '\t', while space means blank or newline.
module Line : sig ... endtype 'a single_line = {leading_blanks : Base.string;(*regexp: "
*)\t*"trailing_spaces : Base.string;(*regexp: "
*)\t\n*"orig : Base.string;(*regexp: "
*)^ \t\n(^\n*^ \t\n)?"data : 'a;
}Single line represent %expect nodes with data on the first line but not on the subsequent ones.
For instance:
  [%expect "  blah "];
  [%expect {|  blah
           |}]val sexp_of_single_line : 
  ('a -> Ppx_sexp_conv_lib.Sexp.t) ->
  'a single_line ->
  Ppx_sexp_conv_lib.Sexp.tval compare_single_line : 
  ('a -> 'a -> Base.int) ->
  'a single_line ->
  'a single_line ->
  Base.inttype 'a multi_lines = {leading_spaces : Base.string;(*regexp: "\(
*)\t*\n\)*"trailing_spaces : Base.string;(*regexp: "
*)\t*" or "\(\n\t*\)*"indentation : Base.string;(*regexp: "
*)\t*"lines : 'a Line.t Base.list;(*regexp: not_blank (.* not_blank)?
*)
}Any %expect node with one or more newlines and at least one non-blank line.
This also include the case with exactly one non-blank line such as:
  [%expect {|
    blah
  |}]This is to preserve this formatting in case the correction is multi-line.
leading_spaces contains everything until the first non-blank line, while trailing_spaces is either:
- trailing blanks on the last line if of the form:
 
  [%expect {|
             abc
             def |}]- all trailing spaces from the newline character (inclusive) on the last non-blank line to the end if of the form:
 
  [%expect {|
             abc
             def
  |}]val sexp_of_multi_lines : 
  ('a -> Ppx_sexp_conv_lib.Sexp.t) ->
  'a multi_lines ->
  Ppx_sexp_conv_lib.Sexp.tval compare_multi_lines : 
  ('a -> 'a -> Base.int) ->
  'a multi_lines ->
  'a multi_lines ->
  Base.inttype 'a t = | Empty of Base.string(*regexp: "
*)\t\n*"| Single_line of 'a single_line| Multi_lines of 'a multi_lines
val sexp_of_t : 
  ('a -> Ppx_sexp_conv_lib.Sexp.t) ->
  'a t ->
  Ppx_sexp_conv_lib.Sexp.tval empty : 'a tval map : 'a t -> f:(Base.string -> 'a -> 'b) -> 'b tval to_string : _ t -> Base.stringFor single line expectation, leading blanks and trailing spaces are dropped.
Remove blank lines at the beginning and end of the list.
val reconcile : 
  'a t ->
  lines:'a Line.t Base.list ->
  default_indentation:Base.int ->
  pad_single_line:Base.bool ->
  'a tGiven a contents t and a list of lines, try to produce a new contents containing lines but with the same formating as t.
default_indentation is the indentation to use in case we ignore t's indentation (for instance if t is Single_line or Empty).
val extract_indentation : 
  'a Line.t Base.list ->
  Base.string * 'a Line.t Base.listCompuute the longest indentation of a list of lines and trim it from every line. It returns the found indentation and the list of trimmed lines.
val stripped_original_lines : _ t -> Base.string Base.listAll the .orig fields of Line.t or single_line values, using "" for blank lines.