Module Mdx.Toplevel

type t = {
  1. vpad : int;
  2. hpad : int;
  3. pos : Lexing.position;
  4. command : string list;
  5. output : [ `Ellipsis | `Output of string ] list;
}
type toplevel_tests = {
  1. tests : t list;
  2. end_pad : string option;
}
val dump : t Fmt.t
val dump_toplevel_tests : toplevel_tests Fmt.t
val pp : t Fmt.t
val pp_command : t Fmt.t
val of_lines : loc:Location.t -> string list -> toplevel_tests