Module Statement.Labeled

type ('M, 'T) t = {
  1. label : ('M, 'M) Identifier.t;
  2. body : ('M, 'T) Statement.t;
  3. comments : ('M, unit) Syntax.t option;
}
val pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
val show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string