Module Flow_ast.Match

module Case : sig ... end
type ('M, 'T, 'B) t = {
  1. arg : ('M, 'T) Expression.t;
  2. cases : ('M, 'T, 'B) Case.t list;
  3. match_keyword_loc : 'M;
  4. comments : ('M, unit) Syntax.t option;
}
val pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> (Format.formatter -> 'B -> unit) -> Format.formatter -> ('M, 'T, 'B) t -> unit
val show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> (Format.formatter -> 'B -> unit) -> ('M, 'T, 'B) t -> string